summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/ISOFile.cpp
diff options
context:
space:
mode:
authorScott Mansell <phiren@gmail.com>2015-09-06 21:02:22 +1200
committerScott Mansell <phiren@gmail.com>2015-09-06 21:02:22 +1200
commitbe4caa3dc025d18d57cf53b27e505c19bb70544e (patch)
tree05e246462f966736dff64a897b6441b36600f996 /Source/Core/DolphinWX/ISOFile.cpp
parentd52d8bf93514f7fa5492abc7bff33162148972c1 (diff)
parent8fdb013d540cf5d79a23888053fda2897f997e61 (diff)
Merge pull request #2961 from lioncash/printf
General: Toss out PRI macro usage
Diffstat (limited to 'Source/Core/DolphinWX/ISOFile.cpp')
-rw-r--r--Source/Core/DolphinWX/ISOFile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/ISOFile.cpp b/Source/Core/DolphinWX/ISOFile.cpp
index 5aeca6d1c1..6e2a07ecaf 100644
--- a/Source/Core/DolphinWX/ISOFile.cpp
+++ b/Source/Core/DolphinWX/ISOFile.cpp
@@ -206,7 +206,7 @@ std::string GameListItem::CreateCacheFilename()
// Filename.extension_HashOfFolderPath_Size.cache
// Append hash to prevent ISO name-clashing in different folders.
- Filename.append(StringFromFormat("%s_%x_%" PRIx64 ".cache",
+ Filename.append(StringFromFormat("%s_%x_%llx.cache",
extension.c_str(), HashFletcher((const u8 *)LegalPathname.c_str(), LegalPathname.size()),
File::GetSize(m_FileName)));