mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +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
|
@ -254,7 +254,7 @@ ARCode GetARCode(size_t index)
|
|||
if (index > arCodes.size())
|
||||
{
|
||||
PanicAlertT("GetARCode: Index is greater than "
|
||||
"ar code list size %lu", (unsigned long)index);
|
||||
"ar code list size %zu", index);
|
||||
return ARCode();
|
||||
}
|
||||
return arCodes[index];
|
||||
|
@ -265,7 +265,7 @@ void SetARCode_IsActive(bool active, size_t index)
|
|||
if (index > arCodes.size())
|
||||
{
|
||||
PanicAlertT("SetARCode_IsActive: Index is greater than "
|
||||
"ar code list size %lu", (unsigned long)index);
|
||||
"ar code list size %zu", index);
|
||||
return;
|
||||
}
|
||||
arCodes[index].active = active;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue