Compare commits

...

3 Commits

Author SHA1 Message Date
Benedani
61e2e186c3 This should work then, right?
If it still doesn't, then this will have to be closed. I don't see how it would magically work in the third configuration, aka after core_timing.Advance()
2020-05-06 16:47:57 +02:00
Benedani
46099dc2fb Fix clang format 2020-04-29 10:08:47 +02:00
Benedani
a76151c14e Only run Reschedule() once
It doesn't seem to be necessary to run it 2 times. We verified it in 6 games (SMO, SSBU, Pokemon Sword, SMM2, Tetris 99, ACNH?) with no regressions.
2020-04-29 09:02:07 +02:00

View File

@@ -42,9 +42,8 @@ void CoreManager::RunLoop(bool tight_loop) {
physical_core.Step();
}
}
core_timing.Advance();
Reschedule();
core_timing.Advance();
}
void CoreManager::SingleStep() {