summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-07-25 20:05:33 +0200
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-07-25 20:12:42 +0200
commitdd5b4ccecd15be24fd7846e268fba3b400f73685 (patch)
tree689534aa107a62d6fd5276eefa6ea5e4b27062dd
parent368e8a2ba8546d2158c7089b9480aae25d93cf32 (diff)
downloadmana-dd5b4ccecd15be24fd7846e268fba3b400f73685.tar.gz
mana-dd5b4ccecd15be24fd7846e268fba3b400f73685.tar.bz2
mana-dd5b4ccecd15be24fd7846e268fba3b400f73685.tar.xz
mana-dd5b4ccecd15be24fd7846e268fba3b400f73685.zip
Corrected the minimum height shown in the video options
Actually for me it doesn't list 640x360 anyway, but it might for some people I guess.
-rw-r--r--src/gui/setup_video.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp
index 6968e51c..fef918b5 100644
--- a/src/gui/setup_video.cpp
+++ b/src/gui/setup_video.cpp
@@ -105,7 +105,7 @@ ModeListModel::ModeListModel()
const int height = modes[i]->h;
// Skip the unreasonably small modes
- if (width < 640 || height < 480)
+ if (width < 640 || height < 360)
continue;
mVideoModes.push_back(toString(width) + "x" + toString(height));