aboutsummaryrefslogtreecommitdiff
path: root/engines/wage
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wage')
-rw-r--r--engines/wage/detection_tables.h1
-rw-r--r--engines/wage/gui.cpp2
-rw-r--r--engines/wage/world.cpp4
3 files changed, 4 insertions, 3 deletions
diff --git a/engines/wage/detection_tables.h b/engines/wage/detection_tables.h
index bde10785df..4c29967f7a 100644
--- a/engines/wage/detection_tables.h
+++ b/engines/wage/detection_tables.h
@@ -109,6 +109,7 @@ static const ADGameDescription gameDescriptions[] = {
FANGAME("Minitorian", "c728dfccdca12571e275a4113b3db343", 586464),
FANGAME("M'Lord's Warrior", "e0a0622ce2023984e3118141a9688ec5", 465639), // Original file name is "M'Lord's Warrior †"
FANGAMEN("Mormonoids from the Deep", "Mormonoids 1.25", "4730d0c47d13401d73353e980f91a304", 645318),
+ FANGAMEN("Mormonoids from the Deep", "Mormonoids 1.25", "1a7ee052b375f0c0a4c18836c978ce5b", 645333), // Alt version
// Unhandled comparison case
FANGAME("Mountain of Mayhem", "634211b004371635d191ae0687035501", 750003), // Original file name "Mountain of Mayhem †"
// No way to pass through the first screen
diff --git a/engines/wage/gui.cpp b/engines/wage/gui.cpp
index 53f83bb97c..ffc4e41e66 100644
--- a/engines/wage/gui.cpp
+++ b/engines/wage/gui.cpp
@@ -199,7 +199,7 @@ bool Gui::processSceneEvents(WindowClick click, Common::Event &event) {
// Menu stuff
////////////////
void Gui::regenCommandsMenu() {
- _menu->createSubMenuFromString(_commandsMenuId, _engine->_world->_commandsMenu.c_str());
+ _menu->createSubMenuFromString(_commandsMenuId, _engine->_world->_commandsMenu.c_str(), kMenuActionCommand);
}
void Gui::regenWeaponsMenu() {
diff --git a/engines/wage/world.cpp b/engines/wage/world.cpp
index 4e92af2501..df9fcaf022 100644
--- a/engines/wage/world.cpp
+++ b/engines/wage/world.cpp
@@ -114,9 +114,9 @@ bool World::loadWorld(Common::MacResManager *resMan) {
Common::MacResIDArray::const_iterator iter;
// Dumping interpreter code
-#if 1
+#if 0
res = resMan->getResource(MKTAG('C','O','D','E'), 1);
- warning("code size: %d", res->size());
+ warning("Dumping interpreter code size: %d", res->size());
byte *buf = (byte *)malloc(res->size());
res->read(buf, res->size());
Common::DumpFile out;