diff options
author | David Eriksson | 2003-10-19 11:51:41 +0000 |
---|---|---|
committer | David Eriksson | 2003-10-19 11:51:41 +0000 |
commit | e3d236def0bd8885e40cc68e4f3faa2b2ca1febd (patch) | |
tree | 1e022e158f7f8217bfb598ada668736f2967cb35 | |
parent | b7f01db3f720eb3364b5b02826d04bb70aa69238 (diff) | |
download | scummvm-rg350-e3d236def0bd8885e40cc68e4f3faa2b2ca1febd.tar.gz scummvm-rg350-e3d236def0bd8885e40cc68e4f3faa2b2ca1febd.tar.bz2 scummvm-rg350-e3d236def0bd8885e40cc68e4f3faa2b2ca1febd.zip |
Probably play right voice at the right time now.
svn-id: r10905
-rw-r--r-- | queen/talk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/queen/talk.cpp b/queen/talk.cpp index 47fccc4b38..eab5619a6d 100644 --- a/queen/talk.cpp +++ b/queen/talk.cpp @@ -630,7 +630,7 @@ void Talk::speakSegment( segment[length] = '\0'; char voiceFileName[MAX_STRING_SIZE]; - snprintf(voiceFileName, sizeof(voiceFileName), "%s%1x", voiceFilePrefix, index); + snprintf(voiceFileName, sizeof(voiceFileName), "%s%1x", voiceFilePrefix + 1, index); //debug(0, "Sentence segment '%*s' is said by person '%s' and voice file '%s' is played", // length, segment, person, voiceFileName); |