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