CINE: Ensure openCD() is called

This commit is contained in:
Matthew Hoops 2015-09-29 01:06:17 -04:00 committed by Johannes Schickel
parent fb6fe1332a
commit 016a6000e4

View File

@ -939,6 +939,10 @@ PCSound::PCSound(Audio::Mixer *mixer, CineEngine *vm)
}
_player = new PCSoundFxPlayer(_soundDriver);
// Ensure the CD is open
if (_vm->getGameType() == GType_FW && (_vm->getFeatures() & GF_CD))
g_system->getAudioCDManager()->openCD();
}
PCSound::~PCSound() {