diff options
author | Andrey Nazarov <skuller@skuller.net> | 2007-11-26 00:01:29 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2007-11-26 00:01:29 +0000 |
commit | 4de7c5a54c5256f65756c80241967d315bf27422 (patch) | |
tree | e648359ee950f86700e023e8963b938e065d5f62 /source/cl_parse.c | |
parent | b00e7bd024285970dd00cfc75d8e690bfa475501 (diff) |
Made automatic pause (opening console or menu) not interfere
with manual pause (typing `pause' command).
Fixed command prompt cursor positioning bug introduced in the last commit.
Commented out unused chat HUD stuff.
Diffstat (limited to 'source/cl_parse.c')
-rw-r--r-- | source/cl_parse.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/cl_parse.c b/source/cl_parse.c index b7dc0b8..d9dde76 100644 --- a/source/cl_parse.c +++ b/source/cl_parse.c @@ -451,7 +451,9 @@ static void CL_SetActiveState( void ) { } SCR_LagClear(); +#if USE_CHATHUD SCR_ClearChatHUD_f(); +#endif SCR_EndLoadingPlaque (); // get rid of loading plaque Con_Close(); // close console @@ -1268,7 +1270,9 @@ static void CL_ParsePrint( void ) { Con_SkipNotify( qfalse ); +#if USE_CHATHUD SCR_AddToChatHUD( string ); +#endif // play sound if( cl_chat_sound->string[0] ) { |