mirror of
https://github.com/minetest/minetest.git
synced 2024-11-14 14:30:31 +01:00
Tweak duration_to_string formatting
This commit is contained in:
parent
9113538142
commit
62e3593944
|
@ -670,15 +670,19 @@ inline const std::string duration_to_string(int sec)
|
|||
|
||||
std::stringstream ss;
|
||||
if (hour > 0) {
|
||||
ss << hour << "h ";
|
||||
ss << hour << "h";
|
||||
if (min > 0 || sec > 0)
|
||||
ss << " ";
|
||||
}
|
||||
|
||||
if (min > 0) {
|
||||
ss << min << "m ";
|
||||
ss << min << "min";
|
||||
if (sec > 0)
|
||||
ss << " ";
|
||||
}
|
||||
|
||||
if (sec > 0) {
|
||||
ss << sec << "s ";
|
||||
ss << sec << "s";
|
||||
}
|
||||
|
||||
return ss.str();
|
||||
|
|
Loading…
Reference in New Issue
Block a user