aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gui/options.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/gui/options.cpp b/gui/options.cpp
index b4b35f1d41..0b56991b1e 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -275,7 +275,6 @@ int OptionsDialog::addGraphicControls(GuiObject *boss, int yoffset) {
gm++;
}
-#ifndef _WIN32_WCE
// Fullscreen checkbox
_fullscreenCheckbox = new CheckboxWidget(boss, x, yoffset, w, 16, "Fullscreen mode");
yoffset += 16;
@@ -283,6 +282,11 @@ int OptionsDialog::addGraphicControls(GuiObject *boss, int yoffset) {
// Aspect ratio checkbox
_aspectCheckbox = new CheckboxWidget(boss, x, yoffset, w, 16, "Aspect ratio correction");
yoffset += 16;
+
+#ifdef _WIN32_WCE
+ _fullscreenCheckbox->setState(TRUE);
+ _fullscreenCheckbox->setEnabled(FALSE);
+ _aspectCheckbox->setEnabled(FALSE);
#endif
_enableGraphicSettings = true;