mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
COMMON: Added more debug output to installshield
This commit is contained in:
parent
2c8ee74eb8
commit
c1e18cbb90
@ -90,8 +90,9 @@ InstallShieldCabinet::InstallShieldCabinet(SeekableReadStream *stream, DisposeAf
|
||||
// cabinets.
|
||||
|
||||
// Check for the magic uint32
|
||||
if (_stream->readUint32LE() != 0x28635349) {
|
||||
warning("InstallShieldCabinet::InstallShieldCabinet(): Magic ID doesn't match");
|
||||
uint32 magic = _stream->readUint32LE();
|
||||
if (magic != 0x28635349) {
|
||||
warning("InstallShieldCabinet::InstallShieldCabinet(): Magic ID doesn't match: expecting %x but got %x", 0x28635349, magic);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user