1
0
Fork 0

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

release/0.6
glx 2007-06-21 13:30:23 +00:00
parent 1fa725ecae
commit edf68a04b0
1 changed files with 1 additions and 1 deletions

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