From f444dd551b8dacf4da1dbfc6a19d91c97828f1e0 Mon Sep 17 00:00:00 2001 From: skidau Date: Sat, 16 Oct 2010 10:16:05 +0000 Subject: [PATCH] Quick FIFO fix to get NBA JAM working. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6285 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/HW/GPFifo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/Src/HW/GPFifo.cpp b/Source/Core/Core/Src/HW/GPFifo.cpp index 80f48f8b9f..bd7c2aacd5 100644 --- a/Source/Core/Core/Src/HW/GPFifo.cpp +++ b/Source/Core/Core/Src/HW/GPFifo.cpp @@ -81,7 +81,7 @@ void STACKALIGN CheckGatherPipe() m_gatherPipeCount -= GATHER_PIPE_SIZE; // increase the CPUWritePointer - if (ProcessorInterface::Fifo_CPUWritePointer >= ProcessorInterface::Fifo_CPUEnd) + if (ProcessorInterface::Fifo_CPUWritePointer == ProcessorInterface::Fifo_CPUEnd) { curMem -= ProcessorInterface::Fifo_CPUWritePointer - ProcessorInterface::Fifo_CPUBase; ProcessorInterface::Fifo_CPUWritePointer = ProcessorInterface::Fifo_CPUBase;