Skip to content

Commit

Permalink
libcommon: Missing space character in default savegame user description
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Mar 26, 2014
1 parent f8ffc80 commit a83f621
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/plugins/common/src/g_game.cpp
Expand Up @@ -2934,7 +2934,7 @@ de::String G_DefaultSavedSessionUserDescription(de::String const &slotId, bool a
int const hours = time / 3600; time -= hours * 3600;
int const minutes = time / 60; time -= minutes * 60;
int const seconds = time;
description += de::String("%1:%2:%3")
description += de::String(" %1:%2:%3")
.arg(hours, 2, 10, QChar('0'))
.arg(minutes, 2, 10, QChar('0'))
.arg(seconds, 2, 10, QChar('0'));
Expand Down

0 comments on commit a83f621

Please sign in to comment.