From e11e4cfff284bc154ac77ff3fe6ca6b6829ff7d8 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Tue, 4 Mar 2014 11:38:25 +0100 Subject: [PATCH] GCC buildfix --- GPU/GPUCommon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPU/GPUCommon.cpp b/GPU/GPUCommon.cpp index 9647de36bf..1b7d604514 100644 --- a/GPU/GPUCommon.cpp +++ b/GPU/GPUCommon.cpp @@ -556,7 +556,7 @@ void GPUCommon::SlowRunLoop(DisplayList &list) } // The newPC parameter is used for jumps, we don't count cycles between. -inline void GPUCommon::UpdatePC(u32 currentPC, u32 newPC) { +void GPUCommon::UpdatePC(u32 currentPC, u32 newPC) { // Rough estimate, 2 CPU ticks (it's double the clock rate) per GPU instruction. int executed = (currentPC - cycleLastPC) / 4; cyclesExecuted += 2 * executed;