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

@ -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;