Skip to content

Commit d170247

Browse files
committed
Shift console message for -nosplash
1 parent 3429ae3 commit d170247

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/d_main.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2216,6 +2216,10 @@ static void D_DoomMainSetup(void)
22162216
if (M_StringCompare(wadfolder, wadfolder_default) || !M_FolderExists(wadfolder))
22172217
D_InitWADfolder();
22182218

2219+
if (M_CheckParm("-nosplash"))
2220+
C_Warning(0, "A " BOLD("-nosplash") " parameter was found on the command-line. "
2221+
ITALICS(DOOMRETRO_NAME "'s") " splash screen wasn't displayed.");
2222+
22192223
if ((respawnmonsters = M_CheckParm("-respawn")))
22202224
C_Output("A " BOLD("-respawn") " parameter was found on the command-line. "
22212225
"Monsters will now respawn.");
@@ -2998,8 +3002,6 @@ static void D_DoomMainSetup(void)
29983002

29993003
if (M_CheckParm("-nosplash"))
30003004
{
3001-
C_Warning(0, "A " BOLD("-nosplash") " parameter was found on the command-line. "
3002-
ITALICS(DOOMRETRO_NAME "'s") " splash screen wasn't displayed.");
30033005
menuactive = false;
30043006
splashscreen = false;
30053007
vid_scalefilter = vid_scalefilter_copy;

0 commit comments

Comments
 (0)