diff --git a/stepmania/src/Song.cpp b/stepmania/src/Song.cpp index 2aa253b1f8..95f8790dd5 100644 --- a/stepmania/src/Song.cpp +++ b/stepmania/src/Song.cpp @@ -1049,7 +1049,6 @@ Song::SelectionDisplay Song::GetDisplayed() const return m_SelectionDisplay; } bool Song::NormallyDisplayed() const { return GetDisplayed() == SHOW_ALWAYS; } -bool Song::NeverDisplayed() const { return GetDisplayed() == SHOW_NEVER; } bool Song::ShowInDemonstrationAndRanking() const { return !IsTutorial() && NormallyDisplayed(); } diff --git a/stepmania/src/song.h b/stepmania/src/song.h index d9a2f3dbde..7a9d716c32 100644 --- a/stepmania/src/song.h +++ b/stepmania/src/song.h @@ -208,7 +208,6 @@ public: bool HasEdits( StepsType st ) const; SelectionDisplay GetDisplayed() const; bool NormallyDisplayed() const; - bool NeverDisplayed() const; bool ShowInDemonstrationAndRanking() const; void AddSteps( Steps* pSteps ); // we are responsible for deleting the memory pointed to by pSteps!