- fixed indentations caused by conflict resolution in cherry-picked commit d911fa99a1

This commit is contained in:
Rachael Alexanderson 2019-01-25 13:02:30 -05:00
parent 06e7ca4170
commit 2f84de9c37
1 changed files with 4 additions and 4 deletions

View File

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