From 42217fbd755d88b461db9f9eecfb568e50167d54 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Sat, 21 Dec 2013 17:58:04 -0600 Subject: [PATCH] Fix the extended information status line that shows emulated mhz + idles skipped. --- Source/Core/Core/Src/Core.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/Core/Src/Core.cpp b/Source/Core/Core/Src/Core.cpp index 41d5c339d6..5884070606 100644 --- a/Source/Core/Core/Src/Core.cpp +++ b/Source/Core/Core/Src/Core.cpp @@ -708,6 +708,8 @@ void UpdateTitle() // that's more of a debugging interest, it can always be optional of course if someone is interested. //#define EXTENDED_INFO #ifdef EXTENDED_INFO + static u64 ticks = 0; + static u64 idleTicks = 0; u64 newTicks = CoreTiming::GetTicks(); u64 newIdleTicks = CoreTiming::GetIdleTicks();