1
0
mirror of https://github.com/minetest/minetest.git synced 2024-09-27 23:10:27 +02:00

Tweak duration_to_string formatting

This commit is contained in:
Wuzzy 2021-03-15 01:59:52 +01:00 committed by sfan5
parent 9113538142
commit 62e3593944

View File

@ -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();