From 73fcb84b62c8a61ec781f0f233cccaa5c46590ef Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Mon, 9 Oct 2023 05:24:58 +0300 Subject: [PATCH] engine: client: console: remove unneeded return from Con_DrawConsoleLen --- engine/client/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/console.c b/engine/client/console.c index 10be8e58..eadeef71 100644 --- a/engine/client/console.c +++ b/engine/client/console.c @@ -808,7 +808,7 @@ compute string width and height in screen pixels */ void GAME_EXPORT Con_DrawStringLen( const char *pText, int *length, int *height ) { - return CL_DrawStringLen( con.curFont, pText, length, height, FONT_DRAW_UTF8 ); + CL_DrawStringLen( con.curFont, pText, length, height, FONT_DRAW_UTF8 ); } /*