From f7f76ecf69a2908810007940feff04a42121fd05 Mon Sep 17 00:00:00 2001 From: Thilo Schulz Date: Wed, 13 Jul 2011 19:16:25 +0000 Subject: Remove one unnecessary loop in the beginning --- src/qcommon/common.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/qcommon') diff --git a/src/qcommon/common.c b/src/qcommon/common.c index 768166af..e9000aec 100644 --- a/src/qcommon/common.c +++ b/src/qcommon/common.c @@ -2937,8 +2937,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) -- cgit