From 521a028f7c81f349f45cb6b04eddcc8cfb81b609 Mon Sep 17 00:00:00 2001 From: oy Date: Mon, 16 Aug 2010 02:21:18 +0200 Subject: [PATCH] added fixes for compiler errors and warnings by sworddragon --- src/game/client/components/chat.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/game/client/components/chat.cpp b/src/game/client/components/chat.cpp index 0ecafa6cf..4d1997c5c 100644 --- a/src/game/client/components/chat.cpp +++ b/src/game/client/components/chat.cpp @@ -227,6 +227,7 @@ void CChat::OnRender() y -= Cursor.m_Y + Cursor.m_FontSize; // cut off if msgs waste too much space + float HeightLimit = m_Show ? 0.0f : 200.0f; if(y < HeightLimit) break;