mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Merge pull request #2961 from lioncash/printf
General: Toss out PRI macro usage
This commit is contained in:
commit
be4caa3dc0
35 changed files with 71 additions and 76 deletions
|
@ -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)));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue