From d0094d947b36e762f58082b25ff21eaa91789162 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 25 Nov 2003 19:45:56 +0000 Subject: [PATCH] const fix --- 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 ea687d6fe2..c59dc193fb 100644 --- a/stepmania/src/InputMapper.cpp +++ b/stepmania/src/InputMapper.cpp @@ -558,7 +558,7 @@ void InputMapper::StyleToGame( StyleInput StyleI, GameInput &GameI ) void InputMapper::MenuToGame( MenuInput MenuI, GameInput GameIout[4] ) { - GameDef* pGameDef = GAMESTATE->GetCurrentGameDef(); + const GameDef* pGameDef = GAMESTATE->GetCurrentGameDef(); pGameDef->MenuInputToGameInput( MenuI, GameIout ); }