General: Toss out PRI macro usage

Now that VS supports more printf specifiers, these aren't necessary
This commit is contained in:
Lioncash 2015-09-04 19:44:39 -04:00
parent e01428935f
commit 8fdb013d54
35 changed files with 71 additions and 76 deletions

View file

@ -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())
{