diff options
| author | hrydgard <hrydgard@gmail.com> | 2009-02-21 00:54:52 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2009-02-21 00:54:52 +0000 |
| commit | e6ca85c059a2383c30ef99b19d58aa35c6d324fb (patch) | |
| tree | c7d361ea11579f56de4369e92454e3651913312f /Source/Core/VideoCommon | |
| parent | 757d8728b72a64c7b937481015a4eb20b2c9475f (diff) | |
Fix for a single core mode stop-hang. Fix a build error in IL mode.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2328 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon')
| -rw-r--r-- | Source/Core/VideoCommon/Src/Fifo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Src/Fifo.cpp b/Source/Core/VideoCommon/Src/Fifo.cpp index 064cab8dfb..b3a5ee00e6 100644 --- a/Source/Core/VideoCommon/Src/Fifo.cpp +++ b/Source/Core/VideoCommon/Src/Fifo.cpp @@ -51,7 +51,7 @@ void Fifo_Init() { videoBuffer = (u8*)AllocateMemoryPages(FIFO_SIZE); fifo_exit_event.Init(); - fifoStateRun = true; + fifoStateRun = false; g_XFBUpdateRequested = FALSE; } @@ -101,6 +101,7 @@ void Fifo_ExitLoop() void Fifo_EnterLoop(const SVideoInitialize &video_initialize) { + fifoStateRun = true; SCPFifoStruct &_fifo = *video_initialize.pCPFifo; s32 distToSend; |
