Small optimisation

This commit is contained in:
pagefault
2001-09-22 20:48:51 +00:00
parent ffb512a783
commit f8c505b80a

View File

@@ -1816,11 +1816,7 @@ void CheckTimers(void)
while ((end - start) >= update_ticks_pc) while ((end - start) >= update_ticks_pc)
{ {
_asm{ Game60hzcall();
pushad
call Game60hzcall
popad
}
start += update_ticks_pc; start += update_ticks_pc;
} }
} }
@@ -1832,11 +1828,7 @@ void CheckTimers(void)
while ((end - start) >= update_ticks_pc) while ((end - start) >= update_ticks_pc)
{ {
_asm{ GUI36hzcall();
pushad
call GUI36hzcall
popad
}
start += update_ticks_pc; start += update_ticks_pc;
} }
} }