diff options
| author | Scott Mansell <phiren@gmail.com> | 2015-09-06 21:02:22 +1200 |
|---|---|---|
| committer | Scott Mansell <phiren@gmail.com> | 2015-09-06 21:02:22 +1200 |
| commit | be4caa3dc025d18d57cf53b27e505c19bb70544e (patch) | |
| tree | 05e246462f966736dff64a897b6441b36600f996 /Source/Core/Common/Timer.cpp | |
| parent | d52d8bf93514f7fa5492abc7bff33162148972c1 (diff) | |
| parent | 8fdb013d540cf5d79a23888053fda2897f997e61 (diff) | |
Merge pull request #2961 from lioncash/printf
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 451e6a0725..079e4db544 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:%03" PRIu64, + std::string TmpStr = StringFromFormat("%02i:%02i:%02i:%03llu", Hours, Minutes % 60, Seconds % 60, Milliseconds % 1000); return TmpStr; } |
