diff --git a/Source/Core/VideoCommon/Src/Fifo.cpp b/Source/Core/VideoCommon/Src/Fifo.cpp index a59cf76ee5..b71c4c602d 100644 --- a/Source/Core/VideoCommon/Src/Fifo.cpp +++ b/Source/Core/VideoCommon/Src/Fifo.cpp @@ -218,7 +218,7 @@ void Fifo_EnterLoop(const SVideoInitialize &video_initialize) InterlockedExchangeAdd((LONG*)&_fifo.CPReadWriteDistance, -distToSend); #else Common::InterlockedExchange((int*)&_fifo.CPReadPointer, readPtr); - Common::InterlockedExchangeAdd((int*)&_fifo.CPReadWriteDistance, -dist); + Common::InterlockedExchangeAdd((int*)&_fifo.CPReadWriteDistance, -distToSend); #endif } }