- Fixed: The FPS meter cannot use I_MSTime(), because if the game is started
with +vid_fps 1, it can need the time before the timer is ready to start. SVN r2009 (trunk)
This commit is contained in:
parent
a5c8b33f10
commit
26f14f439b
6 changed files with 28 additions and 2 deletions
|
|
@ -124,6 +124,12 @@ unsigned int I_MSTime (void)
|
|||
return time - BaseTime;
|
||||
}
|
||||
|
||||
// Exactly the same thing, but based does no modification to the time.
|
||||
unsigned int I_FPSTime()
|
||||
{
|
||||
return SDL_GetTicks();
|
||||
}
|
||||
|
||||
//
|
||||
// I_GetTime
|
||||
// returns time in 1/35th second tics
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue