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

@ -112,7 +112,7 @@ CISOProperties::CISOProperties(const std::string& fileName, wxWindow* parent, wx
u8 game_id_bytes[8];
if (OpenISO->GetTitleID(game_id_bytes))
{
game_id = StringFromFormat("%016" PRIx64, Common::swap64(game_id_bytes));
game_id = StringFromFormat("%016llx", Common::swap64(game_id_bytes));
}
}