mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-20 00:45:10 +00:00
Fix graphic options on WinCE
svn-id: r13031
This commit is contained in:
parent
47c167a594
commit
fc8c15dc20
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user