reduce timer queuing interval to 1ms (from 10ms) to prevent timer stacking with new high resolution timers (tested in production by vorspire)

This commit is contained in:
Mark Sturgill 2013-11-02 01:05:50 -07:00
parent b035a256b6
commit 4fccb0c3d3

View file

@ -353,7 +353,7 @@ namespace Server
if ( loaded )
Core.Set();
m_Signal.WaitOne( 10, false );
m_Signal.WaitOne(1, false);
}
}
}