aboutsummaryrefslogtreecommitdiff
path: root/scumm/dialogs.cpp
diff options
context:
space:
mode:
authorMax Horn2005-05-16 00:38:30 +0000
committerMax Horn2005-05-16 00:38:30 +0000
commit29354345045fb0bcccc1def76629402ca652a281 (patch)
treed9e5ba3456409b4141f5114b90cc3cacac54a734 /scumm/dialogs.cpp
parentc9290b68ff62293e23e627ee3c3ac55e6a034e9a (diff)
downloadscummvm-rg350-29354345045fb0bcccc1def76629402ca652a281.tar.gz
scummvm-rg350-29354345045fb0bcccc1def76629402ca652a281.tar.bz2
scummvm-rg350-29354345045fb0bcccc1def76629402ca652a281.zip
Enlarge the option dialogs; note that the widgets should be rearranged / enlarged, too; they aren't yet
svn-id: r18123
Diffstat (limited to 'scumm/dialogs.cpp')
-rw-r--r--scumm/dialogs.cpp15
1 files changed, 11 insertions, 4 deletions
diff --git a/scumm/dialogs.cpp b/scumm/dialogs.cpp
index 68e67456ce..4daf9fe991 100644
--- a/scumm/dialogs.cpp
+++ b/scumm/dialogs.cpp
@@ -543,13 +543,20 @@ enum {
kKeysCmd = 'KEYS'
};
-#ifndef _WIN32_WCE
ConfigDialog::ConfigDialog(ScummEngine *scumm)
: GUI::OptionsDialog("", 40, 30, 240, 124), _vm(scumm) {
-#else
-ConfigDialog::ConfigDialog(ScummEngine *scumm)
- : GUI::OptionsDialog("", 40, 30, 240, 124 + 4), _vm(scumm) {
+
+ const int screenW = g_system->getOverlayWidth();
+ const int screenH = g_system->getOverlayHeight();
+
+ _w = screenW - 2 * 40;
+ _h = screenH - 2 * 30 - 16;
+
+#ifdef _WIN32_WCE
+ _h += 4;
#endif
+
+
//
// Add the buttons
//