mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-28 19:00:23 +00:00
Merge pull request #1262 from unknownbrackets/dlist-cycles
Fix incorrect GPU timing with signal jumps
This commit is contained in:
commit
d586d7ddd2
@ -583,6 +583,7 @@ void GPUCommon::ExecuteOp(u32 op, u32 diff) {
|
||||
if (!Memory::IsValidAddress(target)) {
|
||||
ERROR_LOG_REPORT(G3D, "Signal with Jump: bad address. signal/end: %04x %04x", signal, enddata);
|
||||
} else {
|
||||
UpdateCycles(currentList->pc, target);
|
||||
currentList->pc = target;
|
||||
DEBUG_LOG(G3D, "Signal with Jump. signal/end: %04x %04x", signal, enddata);
|
||||
}
|
||||
@ -601,6 +602,7 @@ void GPUCommon::ExecuteOp(u32 op, u32 diff) {
|
||||
} else {
|
||||
// TODO: This might save/restore other state...
|
||||
currentList->stack[currentList->stackptr++] = currentList->pc;
|
||||
UpdateCycles(currentList->pc, target);
|
||||
currentList->pc = target;
|
||||
DEBUG_LOG(G3D, "Signal with Call. signal/end: %04x %04x", signal, enddata);
|
||||
}
|
||||
@ -614,7 +616,9 @@ void GPUCommon::ExecuteOp(u32 op, u32 diff) {
|
||||
ERROR_LOG_REPORT(G3D, "Signal with Return: stack empty. signal/end: %04x %04x", signal, enddata);
|
||||
} else {
|
||||
// TODO: This might save/restore other state...
|
||||
currentList->pc = currentList->stack[--currentList->stackptr];
|
||||
u32 target = currentList->stack[--currentList->stackptr];
|
||||
UpdateCycles(currentList->pc, target);
|
||||
currentList->pc = target;
|
||||
DEBUG_LOG(G3D, "Signal with Return. signal/end: %04x %04x", signal, enddata);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user