mirror of https://github.com/PCSX2/pcsx2.git
GIF: Adjust run length of split in intermittent packets
This commit is contained in:
parent
14df69e180
commit
2a0f001902
|
@ -329,7 +329,7 @@ static u32 WRITERING_DMA(u32* pMem, u32 qwc)
|
|||
// so we can get away with transferring "most" of it when it's a big packet.
|
||||
// Use Wallace and Gromit Project Zoo or The Suffering for testing
|
||||
if (qwc > 64)
|
||||
qwc = qwc - 64;
|
||||
qwc = qwc * 0.5f;
|
||||
else
|
||||
qwc = std::min(qwc, 8u);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue