From a1454f4f0549c0b894f6886a04c9c49538db5012 Mon Sep 17 00:00:00 2001 From: nakeee Date: Sun, 2 Nov 2008 17:23:26 +0000 Subject: [PATCH] continue instead of sleep (please review) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1051 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/VideoCommon/Src/Fifo.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/Src/Fifo.cpp b/Source/Core/VideoCommon/Src/Fifo.cpp index 720e857b2b..feeefad2d6 100644 --- a/Source/Core/VideoCommon/Src/Fifo.cpp +++ b/Source/Core/VideoCommon/Src/Fifo.cpp @@ -113,7 +113,8 @@ void Fifo_EnterLoop(const SVideoInitialize &video_initialize) #if defined(THREAD_VIDEO_WAKEUP_ONIDLE) && defined(_WIN32) continue; #else - Common::SleepCurrentThread(1); + //Common::SleepCurrentThread(1); + continue; #endif //etc...