svn-id: r13342
This commit is contained in:
Chris Apers 2004-03-19 10:49:29 +00:00
parent 578b87b856
commit 5121f61175

View File

@ -896,13 +896,7 @@ void Talk::speakSegment(
segment[length] = '\0';
char voiceFileName[MAX_STRING_SIZE];
#ifndef __PALM_OS__
snprintf(voiceFileName, sizeof(voiceFileName), "%s%1x", voiceFilePrefix, index + 1);
#else
// %(X)x is not supported on PalmOS
sprintf(voiceFileName, "%s%1x", voiceFilePrefix, index + 1);
strncpy(voiceFileName + strlen(voiceFileName) - 8, voiceFileName + strlen(voiceFileName) - 1, 2);
#endif
// debug(6, "Sentence segment '%*s' is said by person '%s' and voice file '%s' is played",
// length, segment, person->name, voiceFileName);