mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-13 07:57:23 +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
|
else
|
||||||
minMsec = 1;
|
minMsec = 1;
|
||||||
|
|
||||||
|
msec = Sys_Milliseconds() - com_frameTime;
|
||||||
|
|
||||||
|
if(msec >= minMsec)
|
||||||
timeVal = 0;
|
timeVal = 0;
|
||||||
|
else
|
||||||
|
timeVal = minMsec - msec;
|
||||||
|
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue