summaryrefslogtreecommitdiff
path: root/src/gui/setup_video.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-12-06 20:31:46 +0300
committerAndrei Karas <akaras@inbox.ru>2012-12-06 20:31:46 +0300
commit6cd4c1a2b02726766ad0d5317013ba2e1314c127 (patch)
tree8d03d304c7c45fc3125c7715ff3b1b71f4335e87 /src/gui/setup_video.cpp
parent23d29ec55093cd95c9084965a179ef70da2af150 (diff)
downloadplus-6cd4c1a2b02726766ad0d5317013ba2e1314c127.tar.gz
plus-6cd4c1a2b02726766ad0d5317013ba2e1314c127.tar.bz2
plus-6cd4c1a2b02726766ad0d5317013ba2e1314c127.tar.xz
plus-6cd4c1a2b02726766ad0d5317013ba2e1314c127.zip
Disable best video mode detection under Apple.
Diffstat (limited to 'src/gui/setup_video.cpp')
-rw-r--r--src/gui/setup_video.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp
index 37e09645c..bc6245ebc 100644
--- a/src/gui/setup_video.cpp
+++ b/src/gui/setup_video.cpp
@@ -235,7 +235,7 @@ Setup_Video::Setup_Video(const Widget2 *const widget) :
mFpsLabel(new Label(this)),
mAltFpsSlider(new Slider(2, 160)),
mAltFpsLabel(new Label(this, _("Alt FPS limit: "))),
-#ifndef ANDROID
+#if !defined(ANDROID) && !defined(__APPLE__)
mDetectButton(new Button(this, _("Detect best mode"), "detect", this)),
#endif
mDialog(nullptr)
@@ -317,7 +317,7 @@ Setup_Video::Setup_Video(const Widget2 *const widget) :
place(0, 7, mAltFpsSlider);
place(1, 7, mAltFpsLabel).setPadding(3);
-#ifndef ANDROID
+#if !defined(ANDROID) && !defined(__APPLE__)
place(0, 8, mDetectButton);
#else
mNoFrameCheckBox->setEnabled(false);
@@ -571,7 +571,7 @@ void Setup_Video::action(const gcn::ActionEvent &event)
{
config.setValue("noframe", mNoFrameCheckBox->isSelected());
}
-#if defined(USE_OPENGL) && !defined(ANDROID)
+#if defined(USE_OPENGL) && !defined(ANDROID) && !defined(__APPLE__)
else if (id == "detect")
{
TestMain *test = graphicsManager.startDetection();