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:
parent
b035a256b6
commit
4fccb0c3d3
1 changed files with 1 additions and 1 deletions
|
|
@ -353,7 +353,7 @@ namespace Server
|
|||
if ( loaded )
|
||||
Core.Set();
|
||||
|
||||
m_Signal.WaitOne( 10, false );
|
||||
m_Signal.WaitOne(1, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue