no message
This commit is contained in:
@@ -38,13 +38,13 @@ private:
|
||||
|
||||
void OnGroupChange();
|
||||
void OnSongChange();
|
||||
void OnDanceStyleChange();
|
||||
void OnNotesTypeChange();
|
||||
void OnStepsChange();
|
||||
|
||||
CString GetSelectedGroup() { return m_sGroups[m_iSelectedGroup]; };
|
||||
Song* GetSelectedSong() { return m_pSongs[m_iSelectedSong]; };
|
||||
CString GetSelectedStyle() { return m_sStyles[m_iSelectedStyle]; };
|
||||
Notes* GetSelectedNotes() { return m_pNotess[m_iSelectedNotes]; };
|
||||
CString GetSelectedGroup() { return m_sGroups[m_iSelectedGroup]; };
|
||||
Song* GetSelectedSong() { return m_pSongs[m_iSelectedSong]; };
|
||||
NotesType GetSelectedNotesType() { return m_CurNotesType; };
|
||||
Notes* GetSelectedNotes() { return m_pNotess[m_iSelectedNotes]; };
|
||||
|
||||
void MenuUp( PlayerNumber p );
|
||||
void MenuDown( PlayerNumber p );
|
||||
@@ -54,7 +54,7 @@ private:
|
||||
void MenuStart( PlayerNumber p );
|
||||
|
||||
|
||||
enum SelectedRow { ROW_GROUP, ROW_SONG, ROW_GAME_MODE, ROW_STEPS, NUM_ROWS };
|
||||
enum SelectedRow { ROW_GROUP, ROW_SONG, ROW_NOTES_TYPE, ROW_STEPS, NUM_ROWS };
|
||||
SelectedRow m_SelectedRow;
|
||||
|
||||
MenuElements m_Menu;
|
||||
@@ -67,9 +67,8 @@ private:
|
||||
int m_iSelectedSong; // index into m_pSongs
|
||||
BitmapText m_textSong;
|
||||
|
||||
CStringArray m_sStyles;
|
||||
int m_iSelectedStyle; // index into enum GameMode
|
||||
BitmapText m_textStyle;
|
||||
NotesType m_CurNotesType; // index into enum GameMode
|
||||
BitmapText m_textNotesType;
|
||||
|
||||
CArray<Notes*, Notes*> m_pNotess;
|
||||
int m_iSelectedNotes; // index into m_pNotess
|
||||
|
||||
Reference in New Issue
Block a user