Oops, that wasn't supposed to be committed.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1394 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2008-01-24 20:45:05 +00:00
parent 34665d7f40
commit 41ad0de1fb
1 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
// See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
//
// $Id: OSystem.cxx,v 1.113 2008-01-24 20:43:41 stephena Exp $
// $Id: OSystem.cxx,v 1.114 2008-01-24 20:45:05 stephena Exp $
//============================================================================
#include <cassert>
@ -769,8 +769,8 @@ void OSystem::queryVideoHardware()
// First get the maximum windowed desktop resolution
const SDL_VideoInfo* info = SDL_GetVideoInfo();
myDesktopWidth = 1024;//info->current_w;
myDesktopHeight = 768;//info->current_h;
myDesktopWidth = info->current_w;
myDesktopHeight = info->current_h;
// Then get the valid fullscreen modes
// If there are any errors, just use the desktop resolution