CINE: Check for track 19 instead of track 1 for FW

The CD version of Future Wars contains 29 audio tracks, but
only the last 11 are used. Checking for track19 instead of track1
allows removal of the unused files without triggering the
"missing cd audio" warning.
Fixes TRAC #14347
This commit is contained in:
Walter Agazzi 2023-04-07 15:59:01 +02:00
parent a58add3cf7
commit e123a2316d

View File

@ -100,7 +100,7 @@ Common::Error CineEngine::run() {
initGraphics(320, 200);
if (g_cine->getGameType() == GType_FW && (g_cine->getFeatures() & GF_CD)) {
if (!existExtractedCDAudioFiles()
if (!existExtractedCDAudioFiles(19) // tracks <19 are not used
&& !isDataAndCDAudioReadFromSameCD()) {
warnMissingExtractedCDAudio();
}