diff --git a/stepmania/src/OptionRow.cpp b/stepmania/src/OptionRow.cpp index 3df0340e6b..96928b1d8c 100644 --- a/stepmania/src/OptionRow.cpp +++ b/stepmania/src/OptionRow.cpp @@ -799,12 +799,6 @@ void OptionRow::SetChoiceInRowWithFocus( PlayerNumber pn, int iChoice ) UpdateText( pn ); } -void OptionRow::SetChoiceInRowWithFocusShared( int iChoice ) -{ - FOREACH_PlayerNumber( pn ) - SetChoiceInRowWithFocus( pn, iChoice ); -} - void OptionRow::ResetFocusFromSelection( PlayerNumber pn ) { int iSelection = -1; diff --git a/stepmania/src/OptionRow.h b/stepmania/src/OptionRow.h index 2fe2e8eeb7..7d74f73b00 100644 --- a/stepmania/src/OptionRow.h +++ b/stepmania/src/OptionRow.h @@ -162,7 +162,6 @@ public: int GetChoiceInRowWithFocus( PlayerNumber pn ) const; int GetChoiceInRowWithFocusShared() const; void SetChoiceInRowWithFocus( PlayerNumber pn, int iChoice ); - void SetChoiceInRowWithFocusShared( int iChoice ); void ResetFocusFromSelection( PlayerNumber pn ); bool GetSelected( PlayerNumber pn, int iChoice ) const;