From 95edef2e0d610d54984a10585248f41fca247e12 Mon Sep 17 00:00:00 2001 From: Soren Jorvang Date: Mon, 31 May 2010 16:23:13 +0000 Subject: [PATCH] Avoid printing garbage numbers in the status line when the process becomes blocked. This was most readily apparent when first starting programs from a high-latency filesystem. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5558 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/Core.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/Src/Core.cpp b/Source/Core/Core/Src/Core.cpp index 5713cb88d0..1fb2c4e1be 100644 --- a/Source/Core/Core/Src/Core.cpp +++ b/Source/Core/Core/Src/Core.cpp @@ -622,7 +622,7 @@ void VideoThrottle() // Update info per second u32 ElapseTime = (u32)Timer.GetTimeDifference(); - if (ElapseTime >= 1000) + if (ElapseTime >= 1000 && DrawnVideo > 0) { SCoreStartupParameter& _CoreParameter = SConfig::GetInstance().m_LocalCoreStartupParameter;