SHERLOCK: Skip a couple of cached files for interactive demo

This commit is contained in:
Strangerke 2015-05-17 22:55:58 +02:00
parent 40c2f6042f
commit f724cfcd22

View File

@ -45,9 +45,12 @@ Sound::Sound(SherlockEngine *vm, Audio::Mixer *mixer): _vm(vm), _mixer(mixer) {
_speechOn = true;
_vm->_res->addToCache("MUSIC.LIB");
_vm->_res->addToCache("TITLE.SND");
_vm->_res->addToCache("EPILOGUE.SND");
_vm->_res->addToCache("SND.SND");
if (!_vm->getIsDemo()) {
_vm->_res->addToCache("TITLE.SND");
_vm->_res->addToCache("EPILOGUE.SND");
}
}
/**