Browse Source

engine: client: console: remove unneeded return from Con_DrawConsoleLen

pull/2/head
Alibek Omarov 9 months ago
parent
commit
73fcb84b62
  1. 2
      engine/client/console.c

2
engine/client/console.c

@ -808,7 +808,7 @@ compute string width and height in screen pixels @@ -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 );
}
/*

Loading…
Cancel
Save