mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
Fix HLE logging for args > 8.
This commit is contained in:
parent
4ba1113119
commit
b5bb07b12c
@ -581,7 +581,7 @@ size_t hleFormatLogArgs(char *message, size_t sz, const char *argmask) {
|
||||
} else {
|
||||
u32 sp = currentMIPS->r[MIPS_REG_SP];
|
||||
// Goes upward on stack.
|
||||
regval = Memory::Read_U32(sp + (regval - 8) * 4);
|
||||
regval = Memory::Read_U32(sp + (reg - 8) * 4);
|
||||
}
|
||||
|
||||
switch (argmask[i]) {
|
||||
|
Loading…
Reference in New Issue
Block a user