mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-28 05:52:38 +00:00
General: Toss out PRI macro usage
Now that VS supports more printf specifiers, these aren't necessary
This commit is contained in:
parent
e01428935f
commit
8fdb013d54
35 changed files with 71 additions and 76 deletions
|
@ -790,7 +790,7 @@ bool SConfig::AutoSetup(EBootBS2 _BootBS2)
|
|||
|
||||
// Use the TitleIDhex for name and/or unique ID if launching from nand folder
|
||||
// or if it is not ascii characters (specifically sysmenu could potentially apply to other things)
|
||||
std::string titleidstr = StringFromFormat("%016" PRIx64, ContentLoader.GetTitleID());
|
||||
std::string titleidstr = StringFromFormat("%016llx", ContentLoader.GetTitleID());
|
||||
|
||||
if (m_strName.empty())
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue