[Scummvm-cvs-logs] CVS: scummvm/queen talk.cpp,1.40,1.41
Gregory Montoir
cyx at users.sourceforge.net
Thu Nov 13 06:11:08 CET 2003
Update of /cvsroot/scummvm/scummvm/queen
In directory sc8-pr-cvs1:/tmp/cvs-serv21866
Modified Files:
talk.cpp
Log Message:
fix 'Skip handing over the comic to Joe' issue
Index: talk.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/queen/talk.cpp,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -d -r1.40 -r1.41
--- talk.cpp 13 Nov 2003 11:47:04 -0000 1.40
+++ talk.cpp 13 Nov 2003 14:10:15 -0000 1.41
@@ -220,7 +220,7 @@
if (_input->talkQuit())
break;
- speak(_talkString[selectedSentence], &person, _joeVoiceFilePrefix[selectedSentence]);
+ speak(_talkString[selectedSentence], NULL, _joeVoiceFilePrefix[selectedSentence]);
}
else {
if (person.actor->bobNum > 0) {
@@ -623,8 +623,8 @@
person = &joe_person;
}
- //debug(0, "Sentence '%s' is said by person '%s' and voice files with prefix '%s' played",
- // sentence, person->name, voiceFilePrefix);
+ debug(0, "Sentence '%s' is said by person '%s' and voice files with prefix '%s' played",
+ sentence, person->name, voiceFilePrefix);
if (sentence[0] == '\0') {
goto exit;
@@ -1137,7 +1137,6 @@
int faceDirection) {
// function FIND_SACTION in queen.c
const SpeechParameters *iterator = _speechParameters;
-
if (faceDirection == DIR_RIGHT)
faceDirection = DIR_LEFT;
More information about the Scummvm-git-logs
mailing list