mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-02 19:12:47 +02:00
Interpreter: Call UpdatePerformanceMonitor
This commit is contained in:
parent
2dcd0b248f
commit
8c0f32e6be
@ -219,7 +219,11 @@ int Interpreter::SingleStepInner()
|
||||
}
|
||||
|
||||
UpdatePC();
|
||||
return PPCTables::GetOpInfo(m_prev_inst)->numCycles;
|
||||
|
||||
const GekkoOPInfo* opinfo = PPCTables::GetOpInfo(m_prev_inst);
|
||||
PowerPC::UpdatePerformanceMonitor(opinfo->numCycles, (opinfo->flags & FL_LOADSTORE) != 0,
|
||||
(opinfo->flags & FL_USE_FPU) != 0);
|
||||
return opinfo->numCycles;
|
||||
}
|
||||
|
||||
void Interpreter::SingleStep()
|
||||
|
Loading…
Reference in New Issue
Block a user