* Demote input related console information to developer only so that it doesn't

spam the console every time input settings are changed
This commit is contained in:
Tim Angus 2007-08-24 13:54:23 +00:00
parent 5c66129790
commit 6993861080
4 changed files with 53 additions and 53 deletions

View file

@ -1769,7 +1769,7 @@ void GLimp_WakeRenderer( void *data ) {}
/*****************************************************************************/
void IN_Init(void) {
Com_Printf ("\n------- Input Initialization -------\n");
Com_DPrintf ("\n------- Input Initialization -------\n");
// mouse variables
in_mouse = Cvar_Get ("in_mouse", "1", CVAR_ARCHIVE);
in_dgamouse = Cvar_Get ("in_dgamouse", "1", CVAR_ARCHIVE);
@ -1795,7 +1795,7 @@ void IN_Init(void) {
mouse_avail = qfalse;
IN_StartupJoystick( ); // bk001130 - from cvs1.17 (mkv)
Com_Printf ("------------------------------------\n");
Com_DPrintf ("------------------------------------\n");
}
void IN_Shutdown(void)