aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/hdb/sound.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/engines/hdb/sound.cpp b/engines/hdb/sound.cpp
index 0f8fc8df6c..d2c27961a9 100644
--- a/engines/hdb/sound.cpp
+++ b/engines/hdb/sound.cpp
@@ -1755,14 +1755,11 @@ void Sound::stopMusic() {
}
void Sound::beginMusic(SoundType song, bool fadeIn, int ramp) {
- const char *songName = nullptr;
+ Common::String songName(soundList[song].name);
if (g_hdb->getPlatform() == Common::kPlatformLinux) {
- Common::String updatedName(soundList[song].name);
- updatedName.replace(updatedName.begin() + updatedName.size() - 4, updatedName.end(), ".ogg");
- songName = updatedName.c_str();
- } else
- songName = soundList[song].name;
+ songName.replace(songName.begin() + songName.size() - 4, songName.end(), ".ogg");
+ }
if (g_hdb->isPPC()) {
switch (song) {