mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
HLE: Fix some misleading logging.
This commit is contained in:
parent
c6948561fd
commit
03cd1d5c5e
1 changed files with 1 additions and 1 deletions
|
@ -525,8 +525,8 @@ void HLEReturnFromMipsCall() {
|
|||
}
|
||||
|
||||
// Alright, we have another to call.
|
||||
DEBUG_LOG(HLE, "Executing HLE mips call at %08x, sp=%08x", currentMIPS->pc, sp);
|
||||
currentMIPS->pc = stackData->func;
|
||||
DEBUG_LOG(HLE, "Executing next HLE mips call at %08x, sp=%08x", currentMIPS->pc, sp);
|
||||
currentMIPS->r[MIPS_REG_RA] = HLEMipsCallReturnAddress();
|
||||
for (int i = 0; i < (int)stackData->argc; i++) {
|
||||
currentMIPS->r[MIPS_REG_A0 + i] = Memory::Read_U32(sp + sizeof(HLEMipsCallStack) + i * sizeof(u32));
|
||||
|
|
Loading…
Add table
Reference in a new issue