diff options
-rw-r--r-- | engines/sherlock/talk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/talk.cpp b/engines/sherlock/talk.cpp index a2d6d8a353..7ecf62cd96 100644 --- a/engines/sherlock/talk.cpp +++ b/engines/sherlock/talk.cpp @@ -578,7 +578,7 @@ void Talk::loadTalkFile(const Common::String &filename) { // Create the base of the sound filename used for talking in Rose Tattoo if (IS_ROSE_TATTOO && _scriptMoreFlag != 1) - sound._talkSoundFile = filename + "."; + sound._talkSoundFile = Common::String(filename.c_str(), filename.c_str() + 7) + "."; // Open the talk file for reading Common::SeekableReadStream *talkStream = res.load(talkFile); |