From c5d673801177a6905114f724c229f802ca2756f3 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Tue, 22 Jul 2008 20:07:53 +0000 Subject: Dirty rectangle handling, round four. :/ svn-id: r33216 --- engines/parallaction/objects.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/parallaction') diff --git a/engines/parallaction/objects.h b/engines/parallaction/objects.h index afa6cc5ed5..c2c2c154b5 100644 --- a/engines/parallaction/objects.h +++ b/engines/parallaction/objects.h @@ -94,7 +94,7 @@ enum ZoneFlags { enum CommandFlags { - kFlagsAll = 0xFFFFFFFFU, + kFlagsAll = 0x7FFFFFFFU, kFlagsVisited = 1, kFlagsExit = 0x10000000, -- cgit v1.2.3 From 2b52383534ecb5c3770dfb267d7238516f0ca144 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Wed, 13 Aug 2008 17:46:00 +0000 Subject: Finished legacy API cleanup. Removed all legacy code. Possible regressions. svn-id: r33833 --- engines/parallaction/saveload.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'engines/parallaction') diff --git a/engines/parallaction/saveload.cpp b/engines/parallaction/saveload.cpp index 002295315d..87a556182e 100644 --- a/engines/parallaction/saveload.cpp +++ b/engines/parallaction/saveload.cpp @@ -248,19 +248,19 @@ enum { SaveLoadChooser::SaveLoadChooser(const String &title, const String &buttonLabel, Parallaction_ns *engine) - : Dialog("scummsaveload"), _list(0), _chooseButton(0), _gfxWidget(0), _vm(engine) { + : Dialog("ScummSaveLoad"), _list(0), _chooseButton(0), _gfxWidget(0), _vm(engine) { // _drawingHints |= GUI::THEME_HINT_SPECIAL_COLOR; + _backgroundType = GUI::Theme::kDialogBackgroundSpecial; - new GUI::StaticTextWidget(this, "scummsaveload_title", title); + new GUI::StaticTextWidget(this, "ScummSaveLoad.Title", title); // Add choice list - _list = new GUI::ListWidget(this, "scummsaveload_list"); + _list = new GUI::ListWidget(this, "ScummSaveLoad.List"); _list->setEditable(true); _list->setNumberingMode(GUI::kListNumberingOne); _container = new GUI::ContainerWidget(this, 0, 0, 10, 10); - _container->setHints(GUI::THEME_HINT_USE_SHADOW); _gfxWidget = new GUI::GraphicsWidget(this, 0, 0, 10, 10); @@ -269,8 +269,8 @@ SaveLoadChooser::SaveLoadChooser(const String &title, const String &buttonLabel, _playtime = new GUI::StaticTextWidget(this, 0, 0, 10, 10, "No playtime saved", GUI::kTextAlignCenter); // Buttons - new GUI::ButtonWidget(this, "scummsaveload_cancel", "Cancel", GUI::kCloseCmd, 0); - _chooseButton = new GUI::ButtonWidget(this, "scummsaveload_choose", buttonLabel, kChooseCmd, 0); + new GUI::ButtonWidget(this, "ScummSaveLoad.Cancel", "Cancel", GUI::kCloseCmd, 0); + _chooseButton = new GUI::ButtonWidget(this, "ScummSaveLoad.Choose", buttonLabel, kChooseCmd, 0); _chooseButton->setEnabled(false); } -- cgit v1.2.3