# HG changeset patch # User Sam Lantinga # Date 1031002935 0 # Node ID 414d77a36716daf64de2ca35c7000c50511f4ef5 # Parent 8b1c1ae7af1180e174b92a71abb891ef32569c73 Fixed trashing the framebuffer console on broken video drivers diff -r 8b1c1ae7af11 -r 414d77a36716 src/video/fbcon/SDL_fbvideo.c --- a/src/video/fbcon/SDL_fbvideo.c Mon Sep 02 16:02:17 2002 +0000 +++ b/src/video/fbcon/SDL_fbvideo.c Mon Sep 02 21:42:15 2002 +0000 @@ -463,6 +463,9 @@ 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 @@ } } } +#endif /* BROKEN_MODES */ /* Fill in our hardware acceleration capabilities */ this->info.wm_available = 0;