diff options
author | Andrey Nazarov <skuller@skuller.net> | 2011-02-23 19:29:06 +0300 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2011-02-23 19:29:06 +0300 |
commit | bde7623f497b9624585db62a40459f096a307c1e (patch) | |
tree | 65a2e6e49aa20fde57bbe865771e1c709ebe8ccb /src/sv_init.c | |
parent | e7b4367c5b243d9210fbd5df957fce6623dc40f0 (diff) |
Make CL_Disconnect receive only error type as an argument.
Diffstat (limited to 'src/sv_init.c')
-rw-r--r-- | src/sv_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sv_init.c b/src/sv_init.c index bd647e7..bba7354 100644 --- a/src/sv_init.c +++ b/src/sv_init.c @@ -208,7 +208,7 @@ void SV_InitGame( qboolean ismvd ) { } else { #if USE_CLIENT // make sure the client is down - CL_Disconnect( ERR_DISCONNECT, NULL ); + CL_Disconnect( ERR_DISCONNECT ); SCR_BeginLoadingPlaque(); #endif |