diff options
author | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-02-28 23:01:23 +0000 |
---|---|---|
committer | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-02-28 23:01:23 +0000 |
commit | 204285cfabc556c6e4317a6663c62962a0586008 (patch) | |
tree | 7591f00291184ddc7683dc7866fcbbdf263fec22 /code/client | |
parent | 9f1ff3ab1380f94ac155f97552dd0466f998f2f6 (diff) | |
download | ioquake3-aero-204285cfabc556c6e4317a6663c62962a0586008.tar.gz ioquake3-aero-204285cfabc556c6e4317a6663c62962a0586008.zip |
* Displace the '\n's passed to SV_Shutdown
git-svn-id: svn://svn.icculus.org/quake3/trunk@594 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/client')
-rw-r--r-- | code/client/cl_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/client/cl_main.c b/code/client/cl_main.c index 6842281..9d89679 100644 --- a/code/client/cl_main.c +++ b/code/client/cl_main.c @@ -1053,7 +1053,7 @@ void CL_Connect_f( void ) { if ( com_sv_running->integer && !strcmp( server, "localhost" ) ) { // if running a local server, kill it - SV_Shutdown( "Server quit\n" ); + SV_Shutdown( "Server quit" ); } // make sure a local server is killed |