Commented out aspect ratio autodetection.
authorChristoph Sommer <mail@christoph-sommer.de>
Sun, 16 Dec 2007 00:31:34 +0000 (00:31 +0000)
committerChristoph Sommer <mail@christoph-sommer.de>
Sun, 16 Dec 2007 00:31:34 +0000 (00:31 +0000)
It tends to guess wrong if e.g. 800x600 is displayed on a 16:10 screen

SVN-Revision: 5193

src/main.cpp

index 8144ecd..cca8615 100644 (file)
@@ -401,11 +401,18 @@ void init_video()
 
   // try to guess aspect ratio of monitor if needed
   if (aspect_ratio <= 0) {
+// TODO: commented out because 
+// 1) it tends to guess wrong if widescreen-monitors don't stretch 800x600 to fit, but just display black borders
+// 2) aspect ratios other than 4:3 are largely untested
+/*
     if(config->use_fullscreen && desktop_width > 0) {
       aspect_ratio = static_cast<double>(desktop_width) / static_cast<double>(desktop_height);
     } else {
+*/
       aspect_ratio = 4.0 / 3.0;
+/*
     }
+*/
   }
 
   // use aspect ratio to calculate logical resolution