86box.c: pc_reset_hard_init: dont set cycles_main if DYNAREC=Off

This commit is contained in:
linear cannon
2022-01-29 05:30:34 -08:00
parent 8b511fa9b9
commit fb22e1fc73

View File

@@ -1046,8 +1046,12 @@ pc_reset_hard_init(void)
atfullspeed = 0;
pc_full_speed();
cycles = cycles_main = 0;
cycles = 0;
#ifdef USE_DYNAREC
cycles_main = 0;
#endif
update_mouse_msg();
}