diff options
Diffstat (limited to 'src/gui/setup_video.cpp')
-rw-r--r-- | src/gui/setup_video.cpp | 2 |
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) |