engine: client: make color array of DrawString functions const

This commit is contained in:
Alibek Omarov
2025-02-23 06:46:22 +03:00
parent 0c8da36a0b
commit fe1fd5b024
4 changed files with 9 additions and 9 deletions

View File

@@ -759,7 +759,7 @@ Con_DrawString
client version of routine
====================
*/
int Con_DrawString( int x, int y, const char *string, rgba_t setColor )
int Con_DrawString( int x, int y, const char *string, const rgba_t setColor )
{
return CL_DrawString( x, y, string, setColor, con.curFont, FONT_DRAW_UTF8 );
}