From 8a9dd8d1772547b6895c483e52797e9dfb82164b Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 29 Jan 2005 21:13:24 +0000 Subject: [PATCH] PaneDisplay::Move is never used --- stepmania/src/PaneDisplay.cpp | 6 ------ stepmania/src/PaneDisplay.h | 1 - 2 files changed, 7 deletions(-) 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 );