diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-09-08 01:44:37 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-09-11 09:49:00 -0400 |
| commit | 19459e827f6c15f9429598015019ecb66f2e6cad (patch) | |
| tree | 61dac757115325ce01694429c6864fd99903ace9 /Source/Core/Common/Timer.cpp | |
| parent | 3014feedc839d69931079ad3c4f645ef51055e1a (diff) | |
Partially revert "General: Toss out PRI macro usage"
Diffstat (limited to 'Source/Core/Common/Timer.cpp')
| -rw-r--r-- | Source/Core/Common/Timer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Timer.cpp b/Source/Core/Common/Timer.cpp index 079e4db544..451e6a0725 100644 --- a/Source/Core/Common/Timer.cpp +++ b/Source/Core/Common/Timer.cpp @@ -147,7 +147,7 @@ std::string Timer::GetTimeElapsedFormatted() const // Hours u32 Hours = Minutes / 60; - std::string TmpStr = StringFromFormat("%02i:%02i:%02i:%03llu", + std::string TmpStr = StringFromFormat("%02i:%02i:%02i:%03" PRIu64, Hours, Minutes % 60, Seconds % 60, Milliseconds % 1000); return TmpStr; } |
