From 5d34bff39d5a7b7574dca04e4da8f17a18e09e41 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 13 Jan 2004 03:04:11 +0000 Subject: [PATCH] Don't warn about files not existing that aren't expected to exist on the first run. --- stepmania/src/InputMapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/InputMapper.cpp b/stepmania/src/InputMapper.cpp index 2072736c71..1d6f8b8a7d 100644 --- a/stepmania/src/InputMapper.cpp +++ b/stepmania/src/InputMapper.cpp @@ -372,7 +372,7 @@ void InputMapper::ReadMappingsFromDisk() IniFile ini; ini.SetPath( KEYMAPS_PATH ); if( !ini.ReadFile() ) - LOG->Warn( "could not input mapping file '%s'.", KEYMAPS_PATH ); + LOG->Trace( "Couldn't open mapping file \"%s\": %s.", KEYMAPS_PATH, ini.error.c_str() ); const IniFile::key *Key = ini.GetKey( GAMESTATE->GetCurrentGameDef()->m_szName );