From 14c705a2de9850b91f00839dbeddd6f1f5ecad7b Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Mon, 12 Dec 2005 09:48:18 +0000 Subject: [PATCH] Fix abort at runtime. --- 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 a1fbe94c6a..fe245edcfc 100644 --- a/stepmania/src/InputMapper.cpp +++ b/stepmania/src/InputMapper.cpp @@ -445,7 +445,7 @@ void InputMapper::ReadMappingsFromDisk() IniFile ini; if( !ini.ReadFile( KEYMAPS_PATH ) ) - LOG->Trace( "Couldn't open mapping file \"%s\": %s.", KEYMAPS_PATH, ini.GetError().c_str() ); + LOG->Trace( "Couldn't open mapping file \"%s\": %s.", KEYMAPS_PATH.c_str(), ini.GetError().c_str() ); const Game *pGame = GAMESTATE->GetCurrentGame();