diff options
author | Paul Gilbert | 2018-02-07 20:31:58 -0500 |
---|---|---|
committer | Paul Gilbert | 2018-02-07 20:31:58 -0500 |
commit | 0c487423d1e47b6cc849d8f8ff13b17dd7f7c0dd (patch) | |
tree | a9c80614a260d02f15007b7416cff1c123c0f77d | |
parent | 4989b96752ba76fb151f15bbfc97540009d00394 (diff) | |
download | scummvm-rg350-0c487423d1e47b6cc849d8f8ff13b17dd7f7c0dd.tar.gz scummvm-rg350-0c487423d1e47b6cc849d8f8ff13b17dd7f7c0dd.tar.bz2 scummvm-rg350-0c487423d1e47b6cc849d8f8ff13b17dd7f7c0dd.zip |
XEEN: Compilation fix
-rw-r--r-- | engines/xeen/worldofxeen/clouds_cutscenes.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/xeen/worldofxeen/clouds_cutscenes.cpp b/engines/xeen/worldofxeen/clouds_cutscenes.cpp index 25bf39e556..e3082b9acd 100644 --- a/engines/xeen/worldofxeen/clouds_cutscenes.cpp +++ b/engines/xeen/worldofxeen/clouds_cutscenes.cpp @@ -768,7 +768,7 @@ bool CloudsCutscenes::showCloudsEnding3() { for (int frameCtr = 0; frameCtr < 3; ++frameCtr) { if (frameCtr == 2) - sound.playSound(Common::String::format("%s.voc", mon._attackVoc)); + sound.playSound(Common::String::format("%s.voc", mon._attackVoc.c_str())); ROTATE_BG; counter1 = (counter1 + 1) % 8; |