mirror of https://github.com/bsnes-emu/bsnes.git
This commit is contained in:
parent
06ceb7d29e
commit
bad27bb8f3
|
@ -37,8 +37,9 @@ auto CPU::step() -> void {
|
||||||
if(overclocking.counter < overclocking.target) {
|
if(overclocking.counter < overclocking.target) {
|
||||||
if constexpr(Synchronize) {
|
if constexpr(Synchronize) {
|
||||||
if(configuration.hacks.coprocessor.delayedSync) return;
|
if(configuration.hacks.coprocessor.delayedSync) return;
|
||||||
return synchronizeCoprocessors();
|
synchronizeCoprocessors();
|
||||||
}
|
}
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue