Dynarec + CMake restructure

This commit is contained in:
CocoSimone
2023-01-02 21:44:24 +01:00
parent 91dc3eabba
commit c915ebc11d
43 changed files with 2004 additions and 422 deletions

View File

@@ -30,7 +30,7 @@ void Interpreter::Step(Mem& mem, Registers& regs) {
regs.delaySlot = false;
if(ShouldServiceInterrupt(regs)) {
FireException(regs, ExceptionCode::Interrupt, 0, regs.pc);
FireException(regs, ExceptionCode::Interrupt, 0, false);
return;
}