diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-09-04 19:44:39 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-09-05 16:02:35 -0400 |
| commit | 8fdb013d540cf5d79a23888053fda2897f997e61 (patch) | |
| tree | 6ac7062b09950a1de6fca32c3319cd222487f242 /Source/Core/DiscIO/CompressedBlob.cpp | |
| parent | e01428935fe10cf8461a9b0acf6dab3635770173 (diff) | |
General: Toss out PRI macro usage
Now that VS supports more printf specifiers, these aren't necessary
Diffstat (limited to 'Source/Core/DiscIO/CompressedBlob.cpp')
| -rw-r--r-- | Source/Core/DiscIO/CompressedBlob.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DiscIO/CompressedBlob.cpp b/Source/Core/DiscIO/CompressedBlob.cpp index 04304b7613..812d9e757b 100644 --- a/Source/Core/DiscIO/CompressedBlob.cpp +++ b/Source/Core/DiscIO/CompressedBlob.cpp @@ -108,7 +108,7 @@ void CompressedBlobReader::GetBlock(u64 block_num, u8 *out_ptr) u32 block_hash = HashAdler32(source, comp_block_size); if (block_hash != m_hashes[block_num]) PanicAlertT("The disc image \"%s\" is corrupt.\n" - "Hash of block %" PRIu64 " is %08x instead of %08x.", + "Hash of block %llu is %08x instead of %08x.", m_file_name.c_str(), block_num, block_hash, m_hashes[block_num]); @@ -135,7 +135,7 @@ void CompressedBlobReader::GetBlock(u64 block_num, u8 *out_ptr) { // this seem to fire wrongly from time to time // to be sure, don't use compressed isos :P - PanicAlert("Failure reading block %" PRIu64 " - out of data and not at end.", block_num); + PanicAlert("Failure reading block %llu - out of data and not at end.", block_num); } inflateEnd(&z); if (uncomp_size != m_header.block_size) |
