mirror of https://github.com/PCSX2/pcsx2.git
GS: Avoid Div by 0 on WriteImage
This commit is contained in:
parent
24c99551c7
commit
86f772ad38
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue