summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorMarcos Vitali <marcosvitali@gmail.com>2010-06-25 00:13:06 +0000
committerMarcos Vitali <marcosvitali@gmail.com>2010-06-25 00:13:06 +0000
commitf94eed887bf102123d19f32145cc5162bb9a6bcf (patch)
treea6669e2058b011bdf8c71601556072a6166b2137 /Source/Core
parent72efd56389a13e9c21527ce51384c37b0500757a (diff)
Uncomment Ayuanx patch, this was commented in my last commit by error, My apologize...
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5784 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/VideoCommon/Src/CommandProcessor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/Src/CommandProcessor.cpp b/Source/Core/VideoCommon/Src/CommandProcessor.cpp
index 21c9919393..7ee11e5a1f 100644
--- a/Source/Core/VideoCommon/Src/CommandProcessor.cpp
+++ b/Source/Core/VideoCommon/Src/CommandProcessor.cpp
@@ -599,8 +599,8 @@ void STACKALIGN GatherPipeBursted()
if (g_VideoInitialize.bOnThread)
{
// A little trick to prevent FIFO from overflown in dual core mode (n < 100 to avoid dead lock)
- //for (int cnt = 0; fifo.CPReadWriteDistance > fifo.CPEnd - fifo.CPBase && cnt < 100; cnt++)
- // Common::SwitchCurrentThread();
+ for (int cnt = 0; fifo.CPReadWriteDistance > fifo.CPEnd - fifo.CPBase && cnt < 100; cnt++)
+ Common::SwitchCurrentThread();
}
else
{