From a4fae77b3bb9c3e937c47f4c95394ddadd07d36b Mon Sep 17 00:00:00 2001 From: Patrice Mandin Date: Sun, 14 May 2006 09:55:22 +0000 Subject: [PATCH] Add a reminder to fix current->w,current->h --- src/video/xbios/SDL_xbios.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/video/xbios/SDL_xbios.c b/src/video/xbios/SDL_xbios.c index 5d3994d91..a3b80dd2e 100644 --- a/src/video/xbios/SDL_xbios.c +++ b/src/video/xbios/SDL_xbios.c @@ -418,6 +418,7 @@ static int XBIOS_VideoInit(_THIS, SDL_PixelFormat *vformat) /* Determine the current screen size */ if ( XBIOS_nummodes > 0 ) { + /* FIXME: parse video mode list to search for current mode */ this->info.current_w = XBIOS_modelist[0].width; this->info.current_h = XBIOS_modelist[0].height; }