COMMON: Added more debug output to installshield
This commit is contained in:
parent
2c8ee74eb8
commit
c1e18cbb90
1 changed files with 3 additions and 2 deletions
|
@ -90,8 +90,9 @@ InstallShieldCabinet::InstallShieldCabinet(SeekableReadStream *stream, DisposeAf
|
||||||
// cabinets.
|
// cabinets.
|
||||||
|
|
||||||
// Check for the magic uint32
|
// Check for the magic uint32
|
||||||
if (_stream->readUint32LE() != 0x28635349) {
|
uint32 magic = _stream->readUint32LE();
|
||||||
warning("InstallShieldCabinet::InstallShieldCabinet(): Magic ID doesn't match");
|
if (magic != 0x28635349) {
|
||||||
|
warning("InstallShieldCabinet::InstallShieldCabinet(): Magic ID doesn't match: expecting %x but got %x", 0x28635349, magic);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue