diff options
author | Florian Kagerer | 2009-10-11 19:33:38 +0000 |
---|---|---|
committer | Florian Kagerer | 2009-10-11 19:33:38 +0000 |
commit | 22ffa71c0a9ab23126604de7538b5331a5414a06 (patch) | |
tree | 40aa5497a9b951ff569302c9d1a6f5e6d452861a | |
parent | 1f00be5c15615f2bc784692396b4eaa26eef5cf9 (diff) | |
download | scummvm-rg350-22ffa71c0a9ab23126604de7538b5331a5414a06.tar.gz scummvm-rg350-22ffa71c0a9ab23126604de7538b5331a5414a06.tar.bz2 scummvm-rg350-22ffa71c0a9ab23126604de7538b5331a5414a06.zip |
LOL/PC-98: fix outro music
svn-id: r44941
-rw-r--r-- | engines/kyra/staticres.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/staticres.cpp b/engines/kyra/staticres.cpp index 45d3d2e143..bddeb758e0 100644 --- a/engines/kyra/staticres.cpp +++ b/engines/kyra/staticres.cpp @@ -1831,7 +1831,7 @@ void LoLEngine::initStaticResource() { static const char *pcMusicFileListIngame[] = { "LORE%02d%c" }; static const char *pc98MusicFileListIntro[] = { 0, "lore84.86", "lore82.86", 0, 0, 0, "lore83.86", "lore81.86" }; - static const char *pc98MusicFileListFinale[] = { "lore%02d.86" }; + static const char *pc98MusicFileListFinale[] = { 0, 0, "lore85.86", "lore86.86", "lore87.86" }; static const char *pc98MusicFileListIngame[] = { "lore%02d.86" }; memset(_soundData, 0, sizeof(_soundData)); |