add difficulty change with MenuLeft/Right

This commit is contained in:
Chris Danford
2007-03-06 03:16:42 +00:00
parent 799afea058
commit a0a018ebb6
2 changed files with 24 additions and 4 deletions
+2 -2
View File
@@ -77,8 +77,8 @@ protected:
SelectionState_SelectingSteps,
SelectionState_Finalized
};
bool CanChangeSong() const { return !TWO_PART_SELECTION || m_SelectionState == SelectionState_SelectingSong; }
bool CanChangeSteps() const { return !TWO_PART_SELECTION || m_SelectionState == SelectionState_SelectingSteps; }
bool CanChangeSong() const { return m_SelectionState == SelectionState_SelectingSong; }
bool CanChangeSteps() const { return TWO_PART_SELECTION ? m_SelectionState == SelectionState_SelectingSteps : m_SelectionState == SelectionState_SelectingSong; }
SelectionState GetNextSelectionState() const
{
switch( m_SelectionState )