diff options
author | Travis Howell | 2009-05-03 04:30:18 +0000 |
---|---|---|
committer | Travis Howell | 2009-05-03 04:30:18 +0000 |
commit | fa019b0ee6a6a095184285a1e895f1beba0933a9 (patch) | |
tree | dcd42c6a32faf40ca44ac3ca111dc46d59ef98e2 | |
parent | b73fb35203a2bf16f4fd356af53daa3bc847366f (diff) | |
download | scummvm-rg350-fa019b0ee6a6a095184285a1e895f1beba0933a9.tar.gz scummvm-rg350-fa019b0ee6a6a095184285a1e895f1beba0933a9.tar.bz2 scummvm-rg350-fa019b0ee6a6a095184285a1e895f1beba0933a9.zip |
Nintendo DS hack should only apply to the CD version of Simon the Sorcerer 1.
svn-id: r40249
-rw-r--r-- | engines/agos/script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agos/script.cpp b/engines/agos/script.cpp index 802db3fdd9..2d9f2c91ab 100644 --- a/engines/agos/script.cpp +++ b/engines/agos/script.cpp @@ -444,7 +444,7 @@ void AGOSEngine::o_process() { #ifdef __DS__ // HACK: Skip scene of Simon reading letter from Calypso // due to speech segment been too large to fit into memory - if (getGameType() == GType_SIMON1 && sub->id == 2922) { + if (getGameType() == GType_SIMON1 && (getFeatures() & GF_TALKIE) && sub->id == 2922) { // set parent special _noParentNotify = true; setItemParent(derefItem(16), me()); |