diff options
author | Johannes Schickel | 2013-05-01 15:06:09 +0200 |
---|---|---|
committer | Johannes Schickel | 2013-05-01 15:07:15 +0200 |
commit | da9e27361a845f78c7fcf3b15c7fb47a53c726bf (patch) | |
tree | c597a464feac7f87067b84f0ac119ff38b9f96cb /engines/kyra | |
parent | 635847b979753e1ad54ebfb52a0510e61b38be53 (diff) | |
download | scummvm-rg350-da9e27361a845f78c7fcf3b15c7fb47a53c726bf.tar.gz scummvm-rg350-da9e27361a845f78c7fcf3b15c7fb47a53c726bf.tar.bz2 scummvm-rg350-da9e27361a845f78c7fcf3b15c7fb47a53c726bf.zip |
KYRA: Fix missing music in Kyra 1 DOS intro.
This is a regression from 93e69aa4da0558b05fc235684355ed38eed9863d.
Thanks to eriktorbjorn to noticing that the music is missing.
Diffstat (limited to 'engines/kyra')
-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 bac31f0a3e..57a0f8dce8 100644 --- a/engines/kyra/staticres.cpp +++ b/engines/kyra/staticres.cpp @@ -818,7 +818,7 @@ void KyraEngine_LoK::initStaticResource() { for (int i = 0; i < soundFilesSize; i++) soundFiles[i] = (i < size1) ? soundfiles1[i] : soundfiles2[i - size1]; } - const char *const *soundFilesIntro = _staticres->loadStrings(k1AudioTracksIntro, temp); + const char *const *soundFilesIntro = _staticres->loadStrings(k1AudioTracksIntro, soundFilesIntroSize); const int32 *cdaTable = (const int32 *)_staticres->loadRawData(k1TownsCDATable, cdaTableSize); // FIXME: It seems Kyra1 MAC CD includes AdLib and MIDI music and sfx, thus we enable |