aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/agos/agos.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/agos/agos.cpp b/engines/agos/agos.cpp
index 72cca8aa56..171648970a 100644
--- a/engines/agos/agos.cpp
+++ b/engines/agos/agos.cpp
@@ -470,7 +470,7 @@ int AGOSEngine::init() {
}
}
- midi.mapMT32toGM (getGameType() == GType_SIMON1 && !_native_mt32);
+ midi.mapMT32toGM (getGameType() != GType_SIMON2 && !_native_mt32);
midi.set_driver(driver);
int ret = midi.open();
@@ -1282,7 +1282,8 @@ startOver:
inventoryUp(ha->window);
} else if (ha->id == 0x7FFC) {
inventoryDown(ha->window);
- } else if (ha->id >= 101 && ha->id < 113) {
+ } else if ((getGameType() == GType_SIMON1 || getGameType() == GType_SIMON2) &&
+ (ha->id >= 101 && ha->id < 113)) {
_verbHitArea = ha->verb;
setVerb(ha);
_defaultVerb = 0;