added more info to uncompress error

This commit is contained in:
MysterD 2022-08-05 18:43:45 -07:00
parent 5d1aa7ea6d
commit 4794c2e130
2 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ BinFile *DynOS_Bin_Decompress(const SysPath &aFilename) {
uncompressRc == Z_OK,
__FUNCTION__, aFilename.c_str(), "Cannot uncompress data"
)) {
Print("ERROR: uncompress RC: %d", uncompressRc);
Print("ERROR: uncompress rc: %d, length uncompressed: %lu, length compressed: %lu, length header: %lu", uncompressRc, sLengthUncompressed, sLengthCompressed, _LengthHeader);
return NULL;
}