From 59a99ec62435c79273fdac177e0b9164978e5e86 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 25 Jun 2005 09:03:29 +0000 Subject: [PATCH] remove nop --- stepmania/src/ScreenEnding.cpp | 8 -------- stepmania/src/ScreenEnding.h | 1 - 2 files changed, 9 deletions(-) diff --git a/stepmania/src/ScreenEnding.cpp b/stepmania/src/ScreenEnding.cpp index b7d5a569d8..8799ff424a 100644 --- a/stepmania/src/ScreenEnding.cpp +++ b/stepmania/src/ScreenEnding.cpp @@ -248,14 +248,6 @@ ScreenEnding::~ScreenEnding() { } -void ScreenEnding::Update( float fDeltaTime ) -{ - ScreenAttract::Update( fDeltaTime ); - - if( m_In.IsTransitioning() && m_Out.IsTransitioning() ) - return; -} - void ScreenEnding::Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI ) { bool bIsTransitioning = m_In.IsTransitioning() || m_Out.IsTransitioning(); diff --git a/stepmania/src/ScreenEnding.h b/stepmania/src/ScreenEnding.h index 7350764e60..4f886841b5 100644 --- a/stepmania/src/ScreenEnding.h +++ b/stepmania/src/ScreenEnding.h @@ -27,7 +27,6 @@ public: virtual void Init(); ~ScreenEnding(); - void Update( float fDeltaTime ); virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI ); void HandleScreenMessage( const ScreenMessage SM );