From 69b82e1a026f365d903577de265b79e35d00a96b Mon Sep 17 00:00:00 2001 From: Fabian Greffrath Date: Fri, 13 Jan 2023 10:02:37 +0100 Subject: [PATCH] some more startup messages cosmetics --- src/d_main.c | 2 ++ src/d_net.c | 4 ++-- src/i_flmusic.c | 2 +- src/i_sound.c | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/d_main.c b/src/d_main.c index e917bb46..c111cb1a 100644 --- a/src/d_main.c +++ b/src/d_main.c @@ -2431,6 +2431,8 @@ void D_DoomMain(void) puts("ST_Init: Init status bar."); ST_Init(); + putchar('\n'); + idmusnum = -1; //jff 3/17/98 insure idmus number is blank // check for a driver that wants intermission stats diff --git a/src/d_net.c b/src/d_net.c index a9e787ac..10daa92b 100644 --- a/src/d_net.c +++ b/src/d_net.c @@ -287,10 +287,10 @@ void D_CheckNetGame (void) D_StartNetGame(&settings, NULL); LoadGameSettings(&settings); - printf("startskill %i deathmatch: %i startmap: %i startepisode: %i\n", + printf(" startskill %i deathmatch: %i startmap: %i startepisode: %i\n", startskill, deathmatch, startmap, startepisode); - printf("player %i of %i (%i nodes)\n", + printf(" player %i of %i (%i nodes)\n", consoleplayer+1, settings.num_players, settings.num_players); } diff --git a/src/i_flmusic.c b/src/i_flmusic.c index c4eec653..61902070 100644 --- a/src/i_flmusic.c +++ b/src/i_flmusic.c @@ -268,7 +268,7 @@ static boolean I_FL_InitMusic(int device) return false; } - printf("FluidSynth Init: Using '%s'.\n", + printf(" FluidSynth Init: Using '%s'.\n", lumpnum >= 0 ? "SNDFONT lump" : soundfont_path); return true; diff --git a/src/i_sound.c b/src/i_sound.c index 8ba79290..0a9044e2 100644 --- a/src/i_sound.c +++ b/src/i_sound.c @@ -694,7 +694,7 @@ void I_InitSound(void) { int i; - printf("Precaching all sound effects..."); + printf(" Precaching all sound effects... "); for (i = 1; i < num_sfx; i++) { // DEHEXTRA has turned S_sfx into a sparse array