diff options
author | Kirben | 2015-09-13 19:51:39 +1000 |
---|---|---|
committer | Kirben | 2015-09-13 19:51:39 +1000 |
commit | dce5c96cc22ab406e371d7313a26d6d77e25187f (patch) | |
tree | 53c25655df2d3eb29734d949f51736d6eadf359f /engines/cine | |
parent | 8c5e6d2be49d147dd9a8e4845f24c787fc041cee (diff) | |
download | scummvm-rg350-dce5c96cc22ab406e371d7313a26d6d77e25187f.tar.gz scummvm-rg350-dce5c96cc22ab406e371d7313a26d6d77e25187f.tar.bz2 scummvm-rg350-dce5c96cc22ab406e371d7313a26d6d77e25187f.zip |
CINE: Correct size of arrays for CD version of Future Wars.
Diffstat (limited to 'engines/cine')
-rw-r--r-- | engines/cine/sound.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cine/sound.cpp b/engines/cine/sound.cpp index 18aff7e71a..7cab067371 100644 --- a/engines/cine/sound.cpp +++ b/engines/cine/sound.cpp @@ -946,7 +946,7 @@ PCSound::~PCSound() { delete _soundDriver; } -static const char *const musicFileNames[12] = { +static const char *const musicFileNames[11] = { "DUGGER.DAT", "SUITE21.DAT", "FWARS.DAT", @@ -960,7 +960,7 @@ static const char *const musicFileNames[12] = { "TELESONG.DAT", }; -static uint8 musicCDTracks[12] = { +static uint8 musicCDTracks[11] = { 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 22, }; |