Skip to content

Commit

Permalink
HLE: Fix some misleading logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
unknownbrackets committed Mar 23, 2020
1 parent c694856 commit 03cd1d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/HLE/HLE.cpp
Expand Up @@ -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));
Expand Down

0 comments on commit 03cd1d5

Please sign in to comment.