aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction
diff options
context:
space:
mode:
authorNicola Mettifogo2007-03-18 09:35:48 +0000
committerNicola Mettifogo2007-03-18 09:35:48 +0000
commit0aedc8d67fa1cc909b7eec45a6a21241fc24b243 (patch)
tree4f5f8a5a8ae301142055043bb57336b4dba6be6c /engines/parallaction
parent6d718d27f53e2e08e42174188f2ca292816f5c06 (diff)
downloadscummvm-rg350-0aedc8d67fa1cc909b7eec45a6a21241fc24b243.tar.gz
scummvm-rg350-0aedc8d67fa1cc909b7eec45a6a21241fc24b243.tar.bz2
scummvm-rg350-0aedc8d67fa1cc909b7eec45a6a21241fc24b243.zip
Removed old and commented hack code for Dino in the museum location.
svn-id: r26198
Diffstat (limited to 'engines/parallaction')
-rw-r--r--engines/parallaction/dialogue.cpp20
1 files changed, 1 insertions, 19 deletions
diff --git a/engines/parallaction/dialogue.cpp b/engines/parallaction/dialogue.cpp
index 7f735bcd80..1fe9aeaa79 100644
--- a/engines/parallaction/dialogue.cpp
+++ b/engines/parallaction/dialogue.cpp
@@ -377,13 +377,7 @@ void runDialogue(SpeakData *data) {
enterDialogue();
debugC(1, kDebugDialogue, "runDialogue: enterDialogue ok");
-/*
- // the only character which can have a dialogue inside the museum location is Dino
- if (!scumm_stricmp(_name, "museum")) {
- _vm->_gfx->freeCnv( &_normalFrames );
- debugC(1, kDebugDialogue, "runDialogue: special trick for 'museum' location");
- }
-*/
+
_vm->_gfx->setFont("comic");
Cnv v6E;
@@ -451,19 +445,7 @@ void runDialogue(SpeakData *data) {
exitDialogue();
debugC(1, kDebugDialogue, "runDialogue: exit dialogue ok");
-/*
- // as mentioned in the comment at the beginning of this routine, the only
- // character which can have a dialogue inside the museum location is Dino,
- // that's why this hack (with hardcoded Dino) works
- if (!scumm_stricmp(_name, "museum")) {
- _vm->_disk->selectArchive("disk1");
- _vm->_disk->loadFrames(_dinoName, &_normalFrames);
- memcpy(&_vm->_char._ani._cnv, &_normalFrames, sizeof(Cnv));
-
- debugC(1, kDebugDialogue, "runDialogue: special trick for 'museum' location ok");
- }
-*/
debugC(1, kDebugDialogue, "runDialogue: running zone commands");
runCommands(v34);