diff options
| author | Nicolas Bacca | 2004-02-24 21:56:16 +0000 |
|---|---|---|
| committer | Nicolas Bacca | 2004-02-24 21:56:16 +0000 |
| commit | fc8c15dc20ba81c99527c550a2c8ae03003c49b5 (patch) | |
| tree | 328a95b59cf2c2f21441db6b8be8bfc2c32cfe33 /gui | |
| parent | 47c167a594c172cbf0f8169b24d9a328c2026a29 (diff) | |
| download | scummvm-rg350-fc8c15dc20ba81c99527c550a2c8ae03003c49b5.tar.gz scummvm-rg350-fc8c15dc20ba81c99527c550a2c8ae03003c49b5.tar.bz2 scummvm-rg350-fc8c15dc20ba81c99527c550a2c8ae03003c49b5.zip | |
Fix graphic options on WinCE
svn-id: r13031
Diffstat (limited to 'gui')
| -rw-r--r-- | gui/options.cpp | 6 |
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; |
