diff --git a/engine/client/console.c b/engine/client/console.c index 45410973..e5009f9c 100644 --- a/engine/client/console.c +++ b/engine/client/console.c @@ -675,7 +675,9 @@ static void Con_LoadConchars( void ) Con_LoadConsoleFont( i, con.chars + i ); // select properly fontsize - if( refState.width <= 640 ) + if( con_fontnum->value >= 0 && con_fontnum->value <= CON_NUMFONTS - 1 ) + fontSize = con_fontnum->value; + else if( refState.width <= 640 ) fontSize = 0; else if( refState.width >= 1280 ) fontSize = 2;