From: havoc Date: Mon, 4 Feb 2008 11:33:14 +0000 (+0000) Subject: fix bug that caused early console messages to not be put in console X-Git-Tag: xonotic-v0.1.0preview~2445 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=c4cb9d8c9f260b54733a77f1f1ef662852acfd29;p=xonotic%2Fdarkplaces.git fix bug that caused early console messages to not be put in console history (because cls.state defaulted to ca_dedicated - now it defaults to ca_uninitialized) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8071 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/client.h b/client.h index d886f8c8..fac7edfb 100644 --- a/client.h +++ b/client.h @@ -415,6 +415,7 @@ typedef struct cshift_s typedef enum cactive_e { + ca_uninitialized, // during early startup ca_dedicated, // a dedicated server with no ability to start a client ca_disconnected, // full screen console with no connection ca_connected // valid netcon, talking to a server