Limit max visible area to 1280x800
authorIngo Ruhnke <grumbel@gmx.de>
Sun, 21 Feb 2010 15:53:14 +0000 (15:53 +0000)
committerIngo Ruhnke <grumbel@gmx.de>
Sun, 21 Feb 2010 15:53:14 +0000 (15:53 +0000)
SVN-Revision: 6373

src/video/gl/gl_renderer.cpp

index 81d8743..41e9131 100644 (file)
@@ -500,7 +500,7 @@ GLRenderer::apply_config()
     SCREEN_HEIGHT = static_cast<int>(screen_size.height  * (target_aspect / desktop_aspect));
   }
 
-  Size max_size(1600, 1200); // FIXME: Maybe 1920 is ok too
+  Size max_size(1280, 800);
 
   if (g_config->magnification == 0.0f) // Magic value that means 'minfill'
   {