mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-25 06:44:59 +00:00
Interpreter: Call UpdatePerformanceMonitor
This commit is contained in:
parent
2dcd0b248f
commit
8c0f32e6be
1 changed files with 5 additions and 1 deletions
|
@ -219,7 +219,11 @@ int Interpreter::SingleStepInner()
|
||||||
}
|
}
|
||||||
|
|
||||||
UpdatePC();
|
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()
|
void Interpreter::SingleStep()
|
||||||
|
|
Loading…
Add table
Reference in a new issue