From 7f24629962a2d67bb4e99ad1edb707f919fbc89e Mon Sep 17 00:00:00 2001 From: TELK Date: Sat, 5 Mar 2016 19:24:25 +0900 Subject: [PATCH] Update chat.c --- src/interface/chat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interface/chat.c b/src/interface/chat.c index 67c0f88757..7bfecbfec5 100644 --- a/src/interface/chat.c +++ b/src/interface/chat.c @@ -68,7 +68,7 @@ void chat_draw() _chatLeft = 10; _chatTop = RCT2_GLOBAL(RCT2_ADDRESS_SCREEN_HEIGHT, uint16) - 40 - ((CHAT_HISTORY_SIZE + 1) * 10); _chatRight = RCT2_GLOBAL(RCT2_ADDRESS_SCREEN_WIDTH, uint16) - 10; - _chatBottom = RCT2_GLOBAL(RCT2_ADDRESS_SCREEN_HEIGHT, uint16) - 40; + _chatBottom = RCT2_GLOBAL(RCT2_ADDRESS_SCREEN_HEIGHT, uint16) - 45; char lineBuffer[CHAT_INPUT_SIZE + 10]; char* lineCh = lineBuffer; int x = _chatLeft;