diff options
| author | JosJuice <josjuice@gmail.com> | 2017-05-06 17:45:08 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2017-05-06 17:45:08 +0200 |
| commit | 36b9e3dd35a7fb4430d4d95300ce5eb30b4f2d6e (patch) | |
| tree | b7acf61a01b9ed81012ad22b22c27eac534ea065 /Source/Core/DiscIO/NANDContentLoader.cpp | |
| parent | 2261224980f597135b482c9551622e1d89ecf07e (diff) | |
Don't duplicate code for getting paths based on title IDs
I've seen the expression (u32)(title_id >> 32), (u32)title_id
a few more times in my life than I would've liked to...
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? |
