diff options
Diffstat (limited to 'src/cgame')
-rw-r--r-- | src/cgame/cg_draw.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cgame/cg_draw.c b/src/cgame/cg_draw.c index 292af56e..ea7d0a1c 100644 --- a/src/cgame/cg_draw.c +++ b/src/cgame/cg_draw.c @@ -2688,13 +2688,13 @@ for a few moments void CG_CenterPrint( const char *str, int y, int charWidth ) { char *s; - char newlineParsed[ MAX_STRING_CHARS ]; - const char *wrapped; - static int maxWidth = (int) ((2.0/3.0) * (double) SCREEN_WIDTH ); + char newlineParsed[ MAX_STRING_CHARS ]; + const char *wrapped; + static int maxWidth = (int)( ( 2.0f / 3.0f ) * (float)SCREEN_WIDTH ); Q_ParseNewlines( newlineParsed, str, sizeof( newlineParsed ) ); - - wrapped = Item_Text_Wrap( newlineParsed, 0.5, maxWidth ); + + wrapped = Item_Text_Wrap( newlineParsed, 0.5f, maxWidth ); Q_strncpyz( cg.centerPrint, wrapped, sizeof( cg.centerPrint ) ); |