remove old checkpoints

This commit is contained in:
Glenn Maynard
2006-02-25 06:07:40 +00:00
parent f5174d5d99
commit 1514f2f5d4
2 changed files with 0 additions and 4 deletions
-2
View File
@@ -737,7 +737,6 @@ void InputMapper::GameToMenu( const GameInput &GameI, MenuInput &MenuI )
void InputMapper::StyleToGame( const StyleInput &StyleI, GameInput &GameI )
{
CHECKPOINT_M( ssprintf("%i %i", StyleI.player, StyleI.col) );
const Style* pStyle = GAMESTATE->GetCurrentStyle();
GameI = pStyle->StyleInputToGameInput( StyleI );
}
@@ -777,7 +776,6 @@ bool InputMapper::IsButtonDown( const MenuInput &MenuI )
bool InputMapper::IsButtonDown( const StyleInput &StyleI )
{
CHECKPOINT_M( ssprintf("%i %i", StyleI.player, StyleI.col) );
GameInput GameI;
StyleToGame( StyleI, GameI );
return IsButtonDown( GameI );