cleanup
This commit is contained in:
@@ -91,7 +91,7 @@ void Game::MenuInputToGameInput( MenuInput MenuI, GameInput GameIout[4] ) const
|
||||
|
||||
CString Game::ColToButtonName( int col ) const
|
||||
{
|
||||
const Style* pStyle = GAMESTATE->GetCurrentStyle();
|
||||
const Style *pStyle = GAMESTATE->GetCurrentStyle();
|
||||
const char *pzColumnName = pStyle->m_ColumnInfo[PLAYER_1][col].pzName;
|
||||
if( pzColumnName != NULL )
|
||||
return pzColumnName;
|
||||
|
||||
@@ -51,9 +51,9 @@ public:
|
||||
int m_iDefaultKeyboardKey[MAX_GAME_CONTROLLERS][MAX_GAME_BUTTONS]; // default keyboard keys only have an effect the current game is this game
|
||||
|
||||
GameButton ButtonNameToIndex( const CString &sButtonName ) const;
|
||||
MenuInput GameInputToMenuInput( GameInput GameI ) const;
|
||||
void MenuInputToGameInput( MenuInput MenuI, GameInput GameIout[4] ) const;
|
||||
CString ColToButtonName( int col ) const;
|
||||
MenuInput GameInputToMenuInput( GameInput GameI ) const; // looks up current style in GAMESTATE. Yuck.
|
||||
void MenuInputToGameInput( MenuInput MenuI, GameInput GameIout[4] ) const; // looks up current style in GAMESTATE. Yuck.
|
||||
CString ColToButtonName( int col ) const; // looks up current style. Yuck.
|
||||
|
||||
TapNoteScore MapTapNoteScore( TapNoteScore tns ) const;
|
||||
TapNoteScore m_mapMarvelousTo;
|
||||
|
||||
Reference in New Issue
Block a user