mirror of
https://github.com/libretro/pcsx2.git
synced 2024-11-25 02:09:52 +00:00
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:
parent
3233952582
commit
14a7816e28
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user