mirror of
https://github.com/ioquake/ioq3.git
synced 2025-05-30 16:41:31 +00:00
- compensate sv_fps for timescale value.
- Add a non-dirty-hack fix for client hanging when unpausing a game.
This commit is contained in:
parent
90b35ec5c8
commit
fb18a4b2e4
6 changed files with 35 additions and 15 deletions
|
@ -798,7 +798,7 @@ void SV_Frame( int msec ) {
|
|||
if ( sv_fps->integer < 1 ) {
|
||||
Cvar_Set( "sv_fps", "10" );
|
||||
}
|
||||
frameMsec = 1000 / sv_fps->integer ;
|
||||
frameMsec = 1000 / sv_fps->integer * com_timescale->value;
|
||||
|
||||
sv.timeResidual += msec;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue