diff options
author | Gregory Montoir | 2004-01-07 15:46:45 +0000 |
---|---|---|
committer | Gregory Montoir | 2004-01-07 15:46:45 +0000 |
commit | c46d2f05304b1b871df549bba9b2aed0656b7c44 (patch) | |
tree | 040b6c0b7e9603c4b512abaccf5367885740ab6c | |
parent | 272eb212878e90285f21a6b3d4ab655a9e59b0b3 (diff) | |
download | scummvm-rg350-c46d2f05304b1b871df549bba9b2aed0656b7c44.tar.gz scummvm-rg350-c46d2f05304b1b871df549bba9b2aed0656b7c44.tar.bz2 scummvm-rg350-c46d2f05304b1b871df549bba9b2aed0656b7c44.zip |
fix 'panel still displayed during dialogue' bug (this was noticeable when trying to bypass the floda receptionist)
svn-id: r12219
-rw-r--r-- | queen/cutaway.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/queen/cutaway.cpp b/queen/cutaway.cpp index c8b9c08308..1138a7bed6 100644 --- a/queen/cutaway.cpp +++ b/queen/cutaway.cpp @@ -1287,7 +1287,7 @@ void Cutaway::talk(char *nextFilename) { personInRoom = 0; // XXX is this correct? } - Talk::talk(_talkFile, personInRoom, nextFilename, _vm); + _vm->logic()->startDialogue(_talkFile, personInRoom, nextFilename); } } |