From efd4a0b33a2c69279ba8f7a06247496deea5028b Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 5 Jun 2022 16:29:42 +0200 Subject: [PATCH] - the chat should use the console's scaling, not the one for the messages printed with the small font. --- src/ct_chat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ct_chat.cpp b/src/ct_chat.cpp index c35754ae0f4..c6fa62f6faa 100644 --- a/src/ct_chat.cpp +++ b/src/ct_chat.cpp @@ -269,7 +269,7 @@ void CT_Drawer (void) y = (viewactive || gamestate != GS_LEVEL) ? -displayfont->GetHeight()-2 : -displayfont->GetHeight() - 22; scalex = 1; - int scale = active_con_scaletext(drawer); + int scale = active_con_scale(drawer); int screen_width = twod->GetWidth() / scale; int screen_height= twod->GetHeight() / scale; int st_y = StatusBar->GetTopOfStatusbar() / scale;