diff --git a/stepmania/src/Screen.cpp b/stepmania/src/Screen.cpp index abdf94c5f8..83d71422a4 100644 --- a/stepmania/src/Screen.cpp +++ b/stepmania/src/Screen.cpp @@ -83,6 +83,11 @@ void Screen::BeginScreen() this->PlayCommand( "Begin" ); } +void Screen::EndScreen() +{ + this->PlayCommand( "End" ); +} + void Screen::Update( float fDeltaTime ) { ActorFrame::Update( fDeltaTime ); diff --git a/stepmania/src/Screen.h b/stepmania/src/Screen.h index 27f03e234e..4918b62ea2 100644 --- a/stepmania/src/Screen.h +++ b/stepmania/src/Screen.h @@ -43,7 +43,7 @@ public: virtual void BeginScreen(); /* This is called when the screen is popped. */ - virtual void EndScreen() { } + virtual void EndScreen(); virtual void Update( float fDeltaTime ); virtual bool OverlayInput( const InputEventPlus &input );