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