Commit cd8a3765 authored by Patrice Mandin's avatar Patrice Mandin

Severe bugfix: format->BitsPerPixel not checked in ListModes function

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40712
parent c471a7f7
......@@ -400,9 +400,19 @@ static int XBIOS_VideoInit(_THIS, SDL_PixelFormat *vformat)
static SDL_Rect **XBIOS_ListModes(_THIS, SDL_PixelFormat *format, Uint32 flags)
{
unsigned int numlist;
/* 8 bits -> list 0 */
/* 16 bits -> list 1 */
return(SDL_modelist[(format->BitsPerPixel)>>4]);
if (format->BitsPerPixel == 15) {
return NULL;
}
numlist = (format->BitsPerPixel)>>4;
if (numlist>1)
return NULL;
return(SDL_modelist[numlist]);
}
static void XBIOS_FreeBuffers(_THIS)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment