diff options
Diffstat (limited to 'source/cl_draw.c')
-rw-r--r-- | source/cl_draw.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/cl_draw.c b/source/cl_draw.c index 008a19e..13236e7 100644 --- a/source/cl_draw.c +++ b/source/cl_draw.c @@ -527,8 +527,10 @@ void SCR_DrawLoading( void ) { // draw message string if( cls.state < ca_connected && cls.messageString[0] ) { + x = scr_glconfig.vidWidth / 2; R_SetColor( DRAW_COLOR_RGB, colorRed ); - SCR_DrawString( x, y + 16, UI_CENTER|UI_MULTILINE, cls.messageString ); + SCR_DrawStringMulti( x, y + 16, UI_CENTER, + MAX_STRING_CHARS, cls.messageString, scr_font ); R_SetColor( DRAW_COLOR_CLEAR, NULL ); } } |