diff options
-rw-r--r-- | engines/avalanche/parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/avalanche/parser.cpp b/engines/avalanche/parser.cpp index a9f9ea2be4..fb2008dcfc 100644 --- a/engines/avalanche/parser.cpp +++ b/engines/avalanche/parser.cpp @@ -543,7 +543,7 @@ Common::String Parser::totalTime() { if (h > 0) result += Common::String::format("%d hours, ", h); if ((m > 0) || (h != 0)) - result = Common::String::format("%d minutes and ", m); + result += Common::String::format("%d minutes and ", m); return result + Common::String::format("%d seconds", s); } |