-dist is now -distToSend

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1185 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2008-11-15 22:32:20 +00:00
parent b1563afa8d
commit e2de566546
1 changed files with 1 additions and 1 deletions

View File

@ -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
}
}