From 71a0e9e6c19c3afddee481ea9c158305f2eb9738 Mon Sep 17 00:00:00 2001 From: sezero Date: Tue, 27 Apr 2010 07:15:19 +0000 Subject: [PATCH] main_sdl.c (main): Remove leading linefeed from the init message. common.c (COM_InitArgv): Move the leading linefeed to the end of message. Index: main_sdl.c =================================================================== --- main_sdl.c (revision 157) +++ main_sdl.c (working copy) @@ -58,7 +58,7 @@ if (!parms.membase) Sys_Error ("Not enough memory free; check disk space\n"); - Con_Printf("\nFitzQuake %1.2f (c) John Fitzgibbons\n", FITZQUAKE_VERSION); + Con_Printf("FitzQuake %1.2f (c) John Fitzgibbons\n", FITZQUAKE_VERSION); Con_Printf("SDL port (c) Sleepwalkr, Baker\n"); Con_Printf("QuakeSpasm %1.2f.%d (c) Ozkan Sezer, Stevenaaus\n", FITZQUAKE_VERSION, QUAKESPASM_VER_PATCH); Index: common.c =================================================================== --- common.c (revision 157) +++ common.c (working copy) @@ -1150,7 +1150,7 @@ if (n > 0 && com_cmdline[n-1] == ' ') com_cmdline[n-1] = 0; //johnfitz -- kill the trailing space - Con_Printf("\nCommand line: %s",com_cmdline); + Con_Printf("Command line: %s\n", com_cmdline); safe = false; git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@158 af15c1b1-3010-417e-b628-4374ebc0bcbd --- Quake/common.c | 2 +- Quake/main_sdl.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Quake/common.c b/Quake/common.c index a4999385..1ac8505c 100644 --- a/Quake/common.c +++ b/Quake/common.c @@ -1150,7 +1150,7 @@ void COM_InitArgv (int argc, char **argv) if (n > 0 && com_cmdline[n-1] == ' ') com_cmdline[n-1] = 0; //johnfitz -- kill the trailing space - Con_Printf("\nCommand line: %s",com_cmdline); + Con_Printf("Command line: %s\n", com_cmdline); safe = false; diff --git a/Quake/main_sdl.c b/Quake/main_sdl.c index 123bafb2..9dc2d37b 100644 --- a/Quake/main_sdl.c +++ b/Quake/main_sdl.c @@ -58,7 +58,7 @@ int main(int argc, char *argv[]) if (!parms.membase) Sys_Error ("Not enough memory free; check disk space\n"); - Con_Printf("\nFitzQuake %1.2f (c) John Fitzgibbons\n", FITZQUAKE_VERSION); + Con_Printf("FitzQuake %1.2f (c) John Fitzgibbons\n", FITZQUAKE_VERSION); Con_Printf("SDL port (c) Sleepwalkr, Baker\n"); Con_Printf("QuakeSpasm %1.2f.%d (c) Ozkan Sezer, Stevenaaus\n", FITZQUAKE_VERSION, QUAKESPASM_VER_PATCH);