Fix typo & reset FPRs on CPU reset

This commit is contained in:
wheremyfoodat 2022-12-31 16:38:28 +02:00
parent 6b69010628
commit 672a893938
2 changed files with 2 additions and 1 deletions

View file

@ -62,6 +62,6 @@ namespace FPSCR {
// Default FPSCR value for threads
ThreadDefault = DefaultNan | FlushToZero | RoundToZero,
MainThreadDefault = ThreadDefault | IXC;
MainThreadDefault = ThreadDefault | IXC
};
}

View file

@ -26,6 +26,7 @@ void CPU::reset() {
jit->Reset();
jit->ClearCache();
jit->Regs().fill(0);
jit->ExtRegs().fill(0);
}
#endif // CPU_DYNARMIC