Simplify, don't let InterpretList do downcount.

This commit is contained in:
Unknown W. Brackets 2013-04-28 14:30:28 -07:00
parent 1edbfa3212
commit 597cdbca3f

View File

@ -465,7 +465,8 @@ inline void GPUCommon::UpdatePC(u32 currentPC, u32 newPC)
cyclesExecuted += 2 * (currentPC - cycleLastPC) / 4;
cycleLastPC = newPC == 0 ? currentPC : newPC;
downcount = currentList->stall == 0 ? 0xFFFFFFF : (currentList->stall - currentList->pc) / 4;
// Exit the runloop and recalculate things. This isn't common.
downcount = 0;
}
inline void GPUCommon::UpdateState(GPUState state)