summaryrefslogtreecommitdiff
path: root/src/gui/setup_video.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-10-28 19:42:17 +0300
committerAndrei Karas <akaras@inbox.ru>2012-10-28 23:13:01 +0300
commita5922daffebf5d78936cf248a7a6a8bfc86c026c (patch)
tree97b30d52dd6071942259a3fddbe2b2f5f727594f /src/gui/setup_video.cpp
parentd0832a59dad69f72b514b87e380017ad3f14dfc6 (diff)
downloadplus-a5922daffebf5d78936cf248a7a6a8bfc86c026c.tar.gz
plus-a5922daffebf5d78936cf248a7a6a8bfc86c026c.tar.bz2
plus-a5922daffebf5d78936cf248a7a6a8bfc86c026c.tar.xz
plus-a5922daffebf5d78936cf248a7a6a8bfc86c026c.zip
Done select always best resolution under Android.
Select it only if current resolution incorrect.
Diffstat (limited to 'src/gui/setup_video.cpp')
-rw-r--r--src/gui/setup_video.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp
index 0188eb6b7..cb3514459 100644
--- a/src/gui/setup_video.cpp
+++ b/src/gui/setup_video.cpp
@@ -133,6 +133,7 @@ static bool modeSorter(std::string mode1, std::string mode2)
ModeListModel::ModeListModel()
{
graphicsManager.getAllVideoModes(mVideoModes);
+#ifndef ANDROID
addCustomMode("640x480");
addCustomMode("800x600");
addCustomMode("1024x768");
@@ -144,6 +145,7 @@ ModeListModel::ModeListModel()
std::sort(mVideoModes.begin(), mVideoModes.end(), modeSorter);
mVideoModes.push_back("custom");
+#endif
}
void ModeListModel::addCustomMode(std::string mode)