Skip to content

Commit

Permalink
C4StartupPlrSelDlg: Fix deletion confirmation message missing colons …
Browse files Browse the repository at this point in the history
…between hours, minutes and seconds (#129)
  • Loading branch information
Fulgen301 committed Jan 11, 2025
1 parent 97f64e0 commit 7c0044c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/C4StartupPlrSelDlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ static std::string TimeString(int iSeconds)
{
int iHours = iSeconds / 3600; iSeconds -= 3600 * iHours;
int iMinutes = iSeconds / 60; iSeconds -= 60 * iMinutes;
return std::format("{:02}{:02}{:02}", iHours, iMinutes, iSeconds);
return std::format("{:02}:{:02}:{:02}", iHours, iMinutes, iSeconds);
}

static std::string DateString(int iTime)
Expand Down

0 comments on commit 7c0044c

Please sign in to comment.