diff --git a/src/video/fbcon/SDL_fbvideo.c b/src/video/fbcon/SDL_fbvideo.c index a743f820a..d1a5a495c 100644 --- a/src/video/fbcon/SDL_fbvideo.c +++ b/src/video/fbcon/SDL_fbvideo.c @@ -463,6 +463,9 @@ static int FB_VideoInit(_THIS, SDL_PixelFormat *vformat) current_w = vinfo.xres; current_h = vinfo.yres; current_index = ((vinfo.bits_per_pixel+7)/8)-1; +#ifdef BROKEN_MODES + FB_AddMode(this, current_index, current_w, current_h); +#else for ( i=0; i w) || (current_h > h) ) { /* Only check once */ - FB_AddMode(this, i,current_w,current_h); + FB_AddMode(this, i, current_w, current_h); current_index = -1; } } @@ -484,6 +487,7 @@ static int FB_VideoInit(_THIS, SDL_PixelFormat *vformat) } } } +#endif /* BROKEN_MODES */ /* Fill in our hardware acceleration capabilities */ this->info.wm_available = 0;