Remove one unnecessary loop in the beginning

This commit is contained in:
Thilo Schulz 2011-07-13 19:16:25 +00:00
parent 1c3ecb3d3c
commit 265d6e0374
1 changed files with 7 additions and 2 deletions

View File

@ -3100,8 +3100,13 @@ void Com_Frame( void ) {
else
minMsec = 1;
timeVal = 0;
msec = Sys_Milliseconds() - com_frameTime;
if(msec >= minMsec)
timeVal = 0;
else
timeVal = minMsec - msec;
do
{
if(com_sv_running->integer)