mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +00:00
Remove one unnecessary loop in the beginning
This commit is contained in:
parent
1c3ecb3d3c
commit
265d6e0374
1 changed files with 7 additions and 2 deletions
|
@ -3100,7 +3100,12 @@ void Com_Frame( void ) {
|
|||
else
|
||||
minMsec = 1;
|
||||
|
||||
msec = Sys_Milliseconds() - com_frameTime;
|
||||
|
||||
if(msec >= minMsec)
|
||||
timeVal = 0;
|
||||
else
|
||||
timeVal = minMsec - msec;
|
||||
|
||||
do
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue