From e0176670f4b9d2676e7b9ef7936158a5282d35eb Mon Sep 17 00:00:00 2001 From: mazmazz Date: Sat, 22 Dec 2018 21:30:39 -0500 Subject: [PATCH] Correct splitscreen check in OLDCHAT --- src/hu_stuff.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hu_stuff.h b/src/hu_stuff.h index 825dc2cd..179e33e1 100644 --- a/src/hu_stuff.h +++ b/src/hu_stuff.h @@ -61,7 +61,7 @@ typedef struct #ifdef NETSPLITSCREEN #define OLDCHAT (cv_consolechat.value == 1 || dedicated || vid.width < 640) #else -#define OLDCHAT (!splitscreen && (cv_consolechat.value == 1 || dedicated || vid.width < 640)) +#define OLDCHAT (cv_consolechat.value == 1 || dedicated || vid.width < 640 || splitscreen) #endif #define CHAT_MUTE (cv_mute.value && !(server || IsPlayerAdmin(consoleplayer))) // this still allows to open the chat but not to type. That's used for scrolling and whatnot. #define OLD_MUTE (OLDCHAT && cv_mute.value && !(server || IsPlayerAdmin(consoleplayer))) // this is used to prevent oldchat from opening when muted.