[Scummvm-cvs-logs] scummvm master -> e9c3d143075c289e0a7382bd6de2837b75d490c1

digitall dgturner at iee.org
Tue Nov 20 00:16:16 CET 2012


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
e9c3d14307 QUEEN: Fix compilation.


Commit: e9c3d143075c289e0a7382bd6de2837b75d490c1
    https://github.com/scummvm/scummvm/commit/e9c3d143075c289e0a7382bd6de2837b75d490c1
Author: D G Turner (digitall at scummvm.org)
Date: 2012-11-19T15:14:30-08:00

Commit Message:
QUEEN: Fix compilation.

Changed paths:
    engines/queen/talk.cpp



diff --git a/engines/queen/talk.cpp b/engines/queen/talk.cpp
index 1a520fa..1531510 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);
 			}
 		}
 	}






More information about the Scummvm-git-logs mailing list