diff --git a/stepmania/src/PaneDisplay.cpp b/stepmania/src/PaneDisplay.cpp index 5c2dfea44c..dfd97ace6e 100644 --- a/stepmania/src/PaneDisplay.cpp +++ b/stepmania/src/PaneDisplay.cpp @@ -429,12 +429,6 @@ PaneTypes PaneDisplay::GetNext( PaneTypes current, int dir ) const return ret; } -void PaneDisplay::Move( int dir ) -{ - const PaneTypes NewPane = GetNext( m_CurPane, dir ); - SetFocus( NewPane ); -} - /* * (c) 2003 Glenn Maynard * All rights reserved. diff --git a/stepmania/src/PaneDisplay.h b/stepmania/src/PaneDisplay.h index 61e247b92e..1fc146e27d 100644 --- a/stepmania/src/PaneDisplay.h +++ b/stepmania/src/PaneDisplay.h @@ -72,7 +72,6 @@ public: void Load( PlayerNumber pn ); void SetFromGameState( SortOrder so ); - void Move( int dir ); void Update( float fDeltaTime );