diff options
author | Filippos Karapetis | 2007-07-19 00:40:11 +0000 |
---|---|---|
committer | Filippos Karapetis | 2007-07-19 00:40:11 +0000 |
commit | d9932d110a544452ad624764c0082c65857ef5da (patch) | |
tree | cefe8f785127be8e82facfd396a04f27fbc00c61 | |
parent | 32c87556de72593a6d6aff021dc599cf7ff9b13d (diff) | |
download | scummvm-rg350-d9932d110a544452ad624764c0082c65857ef5da.tar.gz scummvm-rg350-d9932d110a544452ad624764c0082c65857ef5da.tar.bz2 scummvm-rg350-d9932d110a544452ad624764c0082c65857ef5da.zip |
Fix for bug #1754613 - ITE: crashes using compressed audio. The digital music information was missing from the ITE versions that did not originally include digital music
svn-id: r28141
-rw-r--r-- | engines/saga/detection_tables.h | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/engines/saga/detection_tables.h b/engines/saga/detection_tables.h index bf571e2c13..b33931bd78 100644 --- a/engines/saga/detection_tables.h +++ b/engines/saga/detection_tables.h @@ -123,6 +123,8 @@ static const GameSoundInfo ITEMACDEMO_GameSound = { true }; +/* +// Not used static const GameSoundInfo ITEMACDEMO_GameMusic = { kSoundPCM, 11025, @@ -131,6 +133,7 @@ static const GameSoundInfo ITEMACDEMO_GameMusic = { false, true }; +*/ // Inherit the Earth - Wyrmkeep Linux Demo version static const GameSoundInfo ITELINDEMO_GameMusic = { @@ -326,7 +329,7 @@ static const SAGAGameDescription gameDescriptions[] = { ITEDEMO_GameFonts, &ITEDEMO_GameSound, &ITEDEMO_GameSound, - NULL, + &ITEMACCD_GameMusic, // note: this version did not originally have digital music 0, NULL, }, @@ -424,7 +427,7 @@ static const SAGAGameDescription gameDescriptions[] = { ITEWINDEMO_GameFonts, &ITEWINDEMO1_GameSound, &ITEWINDEMO1_GameSound, - NULL, + &ITEMACCD_GameMusic, // note: this version did not originally have digital music ARRAYSIZE(ITEPatch_Files), ITEPatch_Files, }, @@ -457,7 +460,7 @@ static const SAGAGameDescription gameDescriptions[] = { ITEWINDEMO_GameFonts, &ITEMACCD_G_GameSound, &ITEMACCD_G_GameSound, - NULL, + &ITEMACCD_GameMusic, // note: this version did not originally have digital music 0, NULL, }, @@ -587,7 +590,7 @@ static const SAGAGameDescription gameDescriptions[] = { ITECD_GameFonts, &ITECD_GameSound, &ITECD_GameSound, - NULL, + &ITEMACCD_GameMusic, // note: this version did not originally have digital music 0, NULL, }, @@ -618,7 +621,7 @@ static const SAGAGameDescription gameDescriptions[] = { ITECD_GameFonts, &ITECD_GameSound, &ITECD_GameSound, - NULL, + &ITEMACCD_GameMusic, // note: this version did not originally have digital music 0, NULL, }, @@ -649,7 +652,7 @@ static const SAGAGameDescription gameDescriptions[] = { ITEDISK_GameFonts, &ITEDISK_GameSound, &ITEDISK_GameSound, - NULL, + &ITEMACCD_GameMusic, // note: this version did not originally have digital music 0, NULL, }, @@ -678,7 +681,7 @@ static const SAGAGameDescription gameDescriptions[] = { ITEDISK_GameFonts, &ITEDISK_GameSound, &ITEDISK_GameSound, - NULL, + &ITEMACCD_GameMusic, // note: this version did not originally have digital music 0, NULL, }, |