mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
Fix warnings found by StringFromFormat having printf style checking.
This commit is contained in:
parent
09cc7e2ddf
commit
70d2592ffb
4 changed files with 4 additions and 4 deletions
|
@ -113,7 +113,7 @@ std::string Timer::GetTimeElapsedFormatted() const
|
|||
// Hours
|
||||
u32 Hours = Minutes / 60;
|
||||
|
||||
std::string TmpStr = StringFromFormat("%02i:%02i:%02i:%03i",
|
||||
std::string TmpStr = StringFromFormat("%02i:%02i:%02i:%03lu",
|
||||
Hours, Minutes % 60, Seconds % 60, Milliseconds % 1000);
|
||||
return TmpStr;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue