From 03dc4c968095dc6847fb4e68c1a4af31afb78728 Mon Sep 17 00:00:00 2001 From: Latapostrophe Date: Tue, 31 Jul 2018 23:56:23 +0200 Subject: [PATCH] Fixed sub 400p chat for console --- src/console.c | 2 +- src/hu_stuff.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/console.c b/src/console.c index 357f1ef8..0adde1d1 100644 --- a/src/console.c +++ b/src/console.c @@ -1443,7 +1443,7 @@ static void CON_DrawHudlines(void) if (con_hudlines <= 0) return; - if (chat_on && cv_consolechat.value) + if (chat_on && (cv_consolechat.value || vid.width < 640)) y = charheight; // leave place for chat input in the first row of text (only do it if consolechat is on.) else y = 0; diff --git a/src/hu_stuff.c b/src/hu_stuff.c index 310fdd17..5544e075 100644 --- a/src/hu_stuff.c +++ b/src/hu_stuff.c @@ -1860,7 +1860,7 @@ void HU_Drawer(void) // count down the scroll timer. if (chat_scrolltime > 0) chat_scrolltime--; - if (!cv_consolechat.value && vid.width >= 640) // don't even bother with 200p + if (!cv_consolechat.value && vid.width > 320) // don't even bother with 200p HU_DrawChat(); else HU_DrawChat_Old(); // why the fuck.........................