diff options
author | Martin Kiewitz | 2010-09-01 09:48:00 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-09-01 09:48:00 +0000 |
commit | 81eb3cfba157b3c45095734d5e9177a199d0c351 (patch) | |
tree | 30b418166ea493259a576532a24ad811a05c6567 | |
parent | 5666df7b3824789bda5462c75b69a9333e55b495 (diff) | |
download | scummvm-rg350-81eb3cfba157b3c45095734d5e9177a199d0c351.tar.gz scummvm-rg350-81eb3cfba157b3c45095734d5e9177a199d0c351.tar.bz2 scummvm-rg350-81eb3cfba157b3c45095734d5e9177a199d0c351.zip |
SCI: disable dialog replacement for jones
fixes odd crash right at the start, although you can't save/restore in jones o_O (fixes bug #3057080)
svn-id: r52479
-rw-r--r-- | engines/sci/sci.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp index e65fe9ff33..57f9b41140 100644 --- a/engines/sci/sci.cpp +++ b/engines/sci/sci.cpp @@ -343,6 +343,7 @@ void SciEngine::patchGameSaveRestore(SegManager *segMan) { switch (_gameId) { case GID_MOTHERGOOSE256: // mother goose saves/restores directly and has no save/restore dialogs + case GID_JONES: // gets confused, when we patch us in, although the game isn't able to save/restore o_O return; default: break; |