mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
Move the "time" string in saved game comment into the LANGUAGE lump.
# Conflicts: # src/g_game.cpp
This commit is contained in:
parent
0dbd591812
commit
d911fa99a1
2 changed files with 9 additions and 6 deletions
|
@ -2058,12 +2058,12 @@ static void PutSaveWads (FSerializer &arc)
|
|||
name = Wads.GetWadName (Wads.GetIwadNum());
|
||||
arc.AddString("Game WAD", name);
|
||||
|
||||
// Name of wad the map resides in
|
||||
// Name of wad the map resides in
|
||||
if (Wads.GetLumpFile (level.lumpnum) > Wads.GetIwadNum())
|
||||
{
|
||||
{
|
||||
name = Wads.GetWadName (Wads.GetLumpFile (level.lumpnum));
|
||||
arc.AddString("Map WAD", name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void PutSaveComment (FSerializer &arc)
|
||||
|
@ -2079,14 +2079,14 @@ static void PutSaveComment (FSerializer &arc)
|
|||
|
||||
arc.AddString("Creation Time", comment);
|
||||
|
||||
// Get level name
|
||||
// Get level name
|
||||
//strcpy (comment, level.level_name);
|
||||
comment.Format("%s - %s\n", level.MapName.GetChars(), level.LevelName.GetChars());
|
||||
|
||||
// Append elapsed time
|
||||
const char *const time = GStrings("SAVECOMMENT_TIME");
|
||||
levelTime = level.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);
|
||||
|
|
|
@ -856,6 +856,9 @@ STARTUP3 = "";
|
|||
STARTUP4 = "";
|
||||
STARTUP5 = "";
|
||||
|
||||
// Save file comment
|
||||
SAVECOMMENT_TIME = "time";
|
||||
|
||||
// Scoreboard text
|
||||
SCORE_ITEMS = "ITEMS";
|
||||
SCORE_BONUS = "BONUS";
|
||||
|
|
Loading…
Reference in a new issue