diff options
author | Paul Gilbert | 2014-04-09 20:38:21 -0400 |
---|---|---|
committer | Paul Gilbert | 2014-04-09 20:38:21 -0400 |
commit | 266c8952508c47bff05d10d0945459c634669f73 (patch) | |
tree | f310b368c89ad1112a37457a5ceb3360e842535a | |
parent | ee7e7e68343b65ec76eea986075bc0b753386546 (diff) | |
download | scummvm-rg350-266c8952508c47bff05d10d0945459c634669f73.tar.gz scummvm-rg350-266c8952508c47bff05d10d0945459c634669f73.tar.bz2 scummvm-rg350-266c8952508c47bff05d10d0945459c634669f73.zip |
MADS: Fix wear response for rebreather
-rw-r--r-- | engines/mads/nebular/game_nebular.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/nebular/game_nebular.cpp b/engines/mads/nebular/game_nebular.cpp index d8b00bcf54..467f3c3c6b 100644 --- a/engines/mads/nebular/game_nebular.cpp +++ b/engines/mads/nebular/game_nebular.cpp @@ -296,7 +296,7 @@ void GameNebular::doObjectAction() { } else if (action.isAction(NOUN_EAT, NOUN_STUFFED_FISH)) { dialogs.show(445); } else if (action.isAction(401, 289)) { - dialogs.show(scene._currentSceneId > 103 && scene._currentSceneId < 111 ? 447 : 446); + dialogs.show(scene._currentSceneId > 103 && scene._currentSceneId < 111 ? 446 : 447); } else if (action.isAction(306, 371)) { dialogs.show(448); } else if (action.isAction(951, 35)) { |