mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-09-11 12:10:47 +02:00
Fix an oops from the last commit
This commit is contained in:
@@ -98,13 +98,11 @@ void GB_timing_sync(GB_gameboy_t *gb)
|
||||
if (gb->cycles_since_last_sync < LCDC_PERIOD / 3) return;
|
||||
gb->cycles_since_last_sync = 0;
|
||||
|
||||
if (gb->turbo) {
|
||||
gb->cycles_since_last_sync = 0;
|
||||
if (gb->update_input_hint_callback) {
|
||||
gb->update_input_hint_callback(gb);
|
||||
}
|
||||
return;
|
||||
gb->cycles_since_last_sync = 0;
|
||||
if (gb->update_input_hint_callback) {
|
||||
gb->update_input_hint_callback(gb);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user