mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 13:50:13 +00:00
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:
parent
a58add3cf7
commit
e123a2316d
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user