GS: Avoid Div by 0 on WriteImage

This commit is contained in:
refractionpcsx2 2022-06-14 17:13:06 +01:00
parent 24c99551c7
commit 86f772ad38
1 changed files with 2 additions and 1 deletions

View File

@ -832,7 +832,8 @@ void GSLocalMemory::WriteImage(int& tx, int& ty, const u8* src, int len, GIFRegB
int la = (l + (bsx - 1)) & ~(bsx - 1);
int ra = r & ~(bsx - 1);
int srcpitch = (r - l) * trbpp >> 3;
// Round up to the nearest byte (NFL 2K5 does r = 1, l = 0 bpp =4, causing divide by zero)
int srcpitch = (((r - l) * trbpp) + 7) >> 3;
int h = len / srcpitch;
if (ra - la >= bsx && h > 0) // "transfer width" >= "block width" && there is at least one full row