GLK: FROTZ: Workaround Shogun Blorb having a 0 size apal chunk

This commit is contained in:
Paul Gilbert 2019-08-16 22:18:27 -07:00
parent c9811e279a
commit fe62841561

@ -167,7 +167,7 @@ Common::ErrorCode Blorb::load() {
uint chunkId = f.readUint32BE();
uint chunkSize = f.readUint32BE();
if (chunkId == ID_APal) {
if (chunkId == ID_APal && chunkSize > 0) {
// Found one, so create an entry so it can be opened as file named "apal"
ChunkEntry ce;
ce._filename = "apal";