(svn r10243) -Fix: crash when resizing with 32bpp and 'broken' display with 'non-standard' resolutions

This commit is contained in:
glx 2007-06-21 13:30:23 +00:00
parent 1fa725ecae
commit edf68a04b0

View File

@ -663,7 +663,7 @@ static bool AllocateDibSection(int w, int h)
return false;
_screen.width = w;
_screen.pitch = ALIGN(w, 4);
_screen.pitch = (bpp == 8) ? ALIGN(w, 4) : w;
_screen.height = h;
bi = (BITMAPINFO*)alloca(sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD) * 256);
memset(bi, 0, sizeof(BITMAPINFOHEADER) + sizeof(RGBQUAD) * 256);