diff options
| author | Léo Lam <leolino.lam@gmail.com> | 2017-05-06 18:21:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-06 18:21:07 +0200 |
| commit | c36d24a851ea8dc00c55de081be6f1bfa2f802c0 (patch) | |
| tree | 7c267c89f987593d50941f3e740755622aa0b837 /Source/Core/DiscIO/NANDContentLoader.cpp | |
| parent | 2261224980f597135b482c9551622e1d89ecf07e (diff) | |
| parent | 40653a66073a180fc4036aed0721cd3741911cfb (diff) | |
Merge pull request #5382 from JosJuice/title-id-to-path
Don't duplicate code for getting paths based on title IDs
Diffstat (limited to 'Source/Core/DiscIO/NANDContentLoader.cpp')
| -rw-r--r-- | Source/Core/DiscIO/NANDContentLoader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/NANDContentLoader.cpp b/Source/Core/DiscIO/NANDContentLoader.cpp index 79242d1307..b87e52a246 100644 --- a/Source/Core/DiscIO/NANDContentLoader.cpp +++ b/Source/Core/DiscIO/NANDContentLoader.cpp @@ -258,7 +258,7 @@ void CNANDContentManager::ClearCache() void CNANDContentLoader::RemoveTitle() const { const u64 title_id = m_tmd.GetTitleId(); - INFO_LOG(DISCIO, "RemoveTitle %08x/%08x", (u32)(title_id >> 32), (u32)title_id); + INFO_LOG(DISCIO, "RemoveTitle %016" PRIx64, title_id); if (IsValid()) { // remove TMD? |
