From c1374ac70a20da63a5e88f0a1841fa0c07482638 Mon Sep 17 00:00:00 2001 From: def Date: Mon, 2 Feb 2015 00:21:41 +0100 Subject: [PATCH] Oops, fix highlighting color in console again --- src/game/client/components/console.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/game/client/components/console.cpp b/src/game/client/components/console.cpp index 54268365d..17efec407 100644 --- a/src/game/client/components/console.cpp +++ b/src/game/client/components/console.cpp @@ -517,6 +517,8 @@ void CGameConsole::OnRender() { if(pEntry->m_Highlighted) TextRender()->TextColor(rgb.r, rgb.g, rgb.b, 1); + else + TextRender()->TextColor(1,1,1,1); // get y offset (calculate it if we haven't yet) if(pEntry->m_YOffset < 0.0f)