diff options
Diffstat (limited to 'source/sv_game.c')
-rw-r--r-- | source/sv_game.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/sv_game.c b/source/sv_game.c index d526f93..355af5e 100644 --- a/source/sv_game.c +++ b/source/sv_game.c @@ -177,7 +177,7 @@ static void PF_bprintf( int level, const char *fmt, ... ) { MSG_WriteData( string, len + 1 ); // echo to console - if( dedicated->integer ) { + if( Com_IsDedicated() ) { // mask off high bits for( i = 0; i < len; i++ ) string[i] &= 127; |