mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 16:49:58 -06:00
Merge pull request #2961 from lioncash/printf
General: Toss out PRI macro usage
This commit is contained in:
@ -176,7 +176,7 @@ void CWiiSaveCrypted::ReadHDR()
|
||||
md5((u8*)&m_header, HEADER_SZ, md5_calc);
|
||||
if (memcmp(md5_file, md5_calc, 0x10))
|
||||
{
|
||||
ERROR_LOG(CONSOLE, "MD5 mismatch\n %016" PRIx64 "%016" PRIx64 " != %016" PRIx64 "%016" PRIx64,
|
||||
ERROR_LOG(CONSOLE, "MD5 mismatch\n %016llx%016llx != %016llx%016llx",
|
||||
Common::swap64(md5_file),Common::swap64(md5_file + 8), Common::swap64(md5_calc),
|
||||
Common::swap64(md5_calc + 8));
|
||||
m_valid= false;
|
||||
@ -276,7 +276,7 @@ void CWiiSaveCrypted::ReadBKHDR()
|
||||
}
|
||||
if (m_title_id != Common::swap64(m_bk_hdr.SaveGameTitle))
|
||||
{
|
||||
WARN_LOG(CONSOLE, "Encrypted title (%" PRIx64 ") does not match unencrypted title (%" PRIx64 ")",
|
||||
WARN_LOG(CONSOLE, "Encrypted title (%llx) does not match unencrypted title (%llx)",
|
||||
m_title_id, Common::swap64(m_bk_hdr.SaveGameTitle));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user