From acb9c49ea2083fa30b48f45d43c867ce4e9d6d7e Mon Sep 17 00:00:00 2001 From: raven02 Date: Sat, 12 Oct 2013 16:20:27 +0800 Subject: [PATCH] Try to use a smaller value for cyclesExecuted --- GPU/GPUCommon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPU/GPUCommon.cpp b/GPU/GPUCommon.cpp index 1c1e3ed850..24733c0ee7 100644 --- a/GPU/GPUCommon.cpp +++ b/GPU/GPUCommon.cpp @@ -485,7 +485,7 @@ bool GPUCommon::InterpretList(DisplayList &list) { #endif cycleLastPC = list.pc; - cyclesExecuted += 300; + cyclesExecuted += 60; downcount = list.stall == 0 ? 0x0FFFFFFF : (list.stall - list.pc) / 4; list.state = PSP_GE_DL_STATE_RUNNING; list.interrupted = false;