mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-26 20:59:00 +00:00
WINTERMUTE: Relax exit conditions for mszip packed X files
Few game have X files packed data not clean ended. Remove conditions on last data and keep only remaining data condition.
This commit is contained in:
parent
5475281c09
commit
fccbc28357
@ -76,7 +76,7 @@ static byte *DecompressMsZipData(byte *buffer, uint32 inputSize, uint32 &decompr
|
||||
break;
|
||||
}
|
||||
|
||||
if (uncompressedLen == 0 && compressedLen == 0 && remainingData == 0) {
|
||||
if (remainingData == 0) {
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user