GIF: Adjust run length of split in intermittent packets

This commit is contained in:
refractionpcsx2 2023-08-11 23:08:07 +01:00
parent 14df69e180
commit 2a0f001902
1 changed files with 1 additions and 1 deletions

View File

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