Fixed sub 400p chat for console

This commit is contained in:
Latapostrophe 2018-07-31 23:56:23 +02:00
parent ad187c26f0
commit 03dc4c9680
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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.........................