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

@ -53,7 +53,7 @@ bool SysConf::LoadFromFile(const std::string& filename)
u64 size = File::GetSize(filename);
if (size != SYSCONF_SIZE)
{
if (AskYesNoT("Your SYSCONF file is the wrong size.\nIt should be 0x%04x (but is 0x%04" PRIx64 ")\nDo you want to generate a new one?",
if (AskYesNoT("Your SYSCONF file is the wrong size.\nIt should be 0x%04x (but is 0x%04llx)\nDo you want to generate a new one?",
SYSCONF_SIZE, size))
{
GenerateSysConf();