mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-10 05:06:22 +00:00
Fixed sub 400p chat for console
This commit is contained in:
parent
ac8920ac7a
commit
c2ff88bb62
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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.........................
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue