aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD G Turner2012-11-19 23:14:30 +0000
committerD G Turner2012-11-19 23:14:30 +0000
commite9c3d143075c289e0a7382bd6de2837b75d490c1 (patch)
treeabad70acd5ba94c785087d1373dd72c6dee7caea
parent362e195a5f538c4bfbb402df66102d6f1f0b57fe (diff)
downloadscummvm-rg350-e9c3d143075c289e0a7382bd6de2837b75d490c1.tar.gz
scummvm-rg350-e9c3d143075c289e0a7382bd6de2837b75d490c1.tar.bz2
scummvm-rg350-e9c3d143075c289e0a7382bd6de2837b75d490c1.zip
QUEEN: Fix compilation.
-rw-r--r--engines/queen/talk.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/queen/talk.cpp b/engines/queen/talk.cpp
index 1a520fa818..1531510ba4 100644
--- a/engines/queen/talk.cpp
+++ b/engines/queen/talk.cpp
@@ -173,7 +173,7 @@ void Talk::talk(const char *filename, int personInRoom, char *cutawayFilename) {
if (1 == choicesLeft) {
// Automatically run the final dialogue option
- speak(_talkString[0], &person, otherVoiceFilePrefix)
+ speak(_talkString[0], &person, otherVoiceFilePrefix);
if (_vm->input()->talkQuit())
break;
@@ -249,7 +249,7 @@ void Talk::talk(const char *filename, int personInRoom, char *cutawayFilename) {
findDialogueString(_person1PtrOff, head, _pMax, _talkString[0]);
if (_talkString[0][0] != '\0') {
sprintf(otherVoiceFilePrefix, "%2d%4xP", _talkKey, head);
- speak(_talkString[0], &person, otherVoiceFilePrefix)
+ speak(_talkString[0], &person, otherVoiceFilePrefix);
}
}
}