mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 14:19:02 +00:00
Merge pull request #4842 from ligfx/fix_prix64_es
ES: use PRIx64 to print m_addtitle_tmd.GetTitleId()
This commit is contained in:
commit
db9720d038
1 changed files with 1 additions and 1 deletions
|
@ -403,7 +403,7 @@ IPCCommandResult ES::AddContentStart(const IOCtlVRequest& request)
|
||||||
if (title_id != m_addtitle_tmd.GetTitleId())
|
if (title_id != m_addtitle_tmd.GetTitleId())
|
||||||
{
|
{
|
||||||
ERROR_LOG(IOS_ES, "IOCTL_ES_ADDCONTENTSTART: title id %016" PRIx64 " != "
|
ERROR_LOG(IOS_ES, "IOCTL_ES_ADDCONTENTSTART: title id %016" PRIx64 " != "
|
||||||
"TMD title id %016lx, ignoring",
|
"TMD title id %016" PRIx64 ", ignoring",
|
||||||
title_id, m_addtitle_tmd.GetTitleId());
|
title_id, m_addtitle_tmd.GetTitleId());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue