IPU bug fix by Shalma, well spotted ;p

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4954 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
refraction 2011-11-01 18:44:34 +00:00
parent 3233952582
commit 14a7816e28
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ int IPU_Fifo_Output::write(const u32 *value, uint size)
uint transsize = min(size, 8 - (uint)ipuRegs.ctrl.OFC);
if(!transsize) return 0;
ipuRegs.ctrl.OFC = transsize;
ipuRegs.ctrl.OFC += transsize;
size -= transsize;
while (transsize > 0)
{