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

@ -147,7 +147,7 @@ std::string Timer::GetTimeElapsedFormatted() const
// Hours
u32 Hours = Minutes / 60;
std::string TmpStr = StringFromFormat("%02i:%02i:%02i:%03" PRIu64,
std::string TmpStr = StringFromFormat("%02i:%02i:%02i:%03llu",
Hours, Minutes % 60, Seconds % 60, Milliseconds % 1000);
return TmpStr;
}