This commit is contained in:
byuu 2019-08-05 11:09:57 +09:00
parent 06ceb7d29e
commit bad27bb8f3
1 changed files with 2 additions and 1 deletions

View File

@ -37,8 +37,9 @@ auto CPU::step() -> void {
if(overclocking.counter < overclocking.target) {
if constexpr(Synchronize) {
if(configuration.hacks.coprocessor.delayedSync) return;
return synchronizeCoprocessors();
synchronizeCoprocessors();
}
return;
}
}