Move the "time" string in saved game comment into the LANGUAGE lump.

This commit is contained in:
nashmuhandes 2019-01-21 13:17:11 +08:00 committed by alexey.lysiuk
parent d276d15f26
commit 4eea540a30
2 changed files with 5 additions and 1 deletions

View file

@ -2083,8 +2083,9 @@ static void PutSaveComment (FSerializer &arc)
});
// Append elapsed time
const char *const time = GStrings("SAVECOMMENT_TIME");
levelTime = currentSession->time / TICRATE;
comment.AppendFormat("time: %02d:%02d:%02d", levelTime/3600, (levelTime%3600)/60, levelTime%60);
comment.AppendFormat("%s: %02d:%02d:%02d", time, levelTime/3600, (levelTime%3600)/60, levelTime%60);
// Write out the comment
arc.AddString("Comment", comment);

View file

@ -856,6 +856,9 @@ STARTUP3 = "";
STARTUP4 = "";
STARTUP5 = "";
// Save file comment
SAVECOMMENT_TIME = "time";
// Scoreboard text
SCORE_ITEMS = "ITEMS";
SCORE_BONUS = "BONUS";