mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
- fixed indentations caused by conflict resolution in cherry-picked commit d911fa99a1
This commit is contained in:
parent
06e7ca4170
commit
2f84de9c37
1 changed files with 4 additions and 4 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,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());
|
||||
|
||||
|
|
Loading…
Reference in a new issue