diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2012-07-25 20:05:33 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2012-07-25 20:12:42 +0200 |
commit | dd5b4ccecd15be24fd7846e268fba3b400f73685 (patch) | |
tree | 689534aa107a62d6fd5276eefa6ea5e4b27062dd | |
parent | 368e8a2ba8546d2158c7089b9480aae25d93cf32 (diff) | |
download | mana-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.cpp | 2 |
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)); |