mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 13:50:13 +00:00
DIRECTOR: Skip normal loading for APPL archives again
This commit is contained in:
parent
0f1e9f19c3
commit
486513c715
@ -501,6 +501,10 @@ bool RIFXArchive::openStream(Common::SeekableReadStream *stream, uint32 startOff
|
||||
if (!readMapSuccess)
|
||||
return false;
|
||||
|
||||
// If this is a projector, readMemoryMap read the embedded movie. Nothing more to do.
|
||||
if (_rifxType == MKTAG('A', 'P', 'P', 'L'))
|
||||
return true;
|
||||
|
||||
if (ConfMan.getBool("dump_scripts")) {
|
||||
debug("RIFXArchive::openStream(): Dumping %d resources", _resources.size());
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user