mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-05-05 02:40:00 -05:00
General: Toss out PRI macro usage
Now that VS supports more printf specifiers, these aren't necessary
This commit is contained in:
@@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user