diff --git a/stepmania/src/ScreenTest.cpp b/stepmania/src/ScreenTest.cpp index fe36a7479a..248b4087e1 100644 --- a/stepmania/src/ScreenTest.cpp +++ b/stepmania/src/ScreenTest.cpp @@ -48,7 +48,7 @@ ScreenTest::ScreenTest() SetScreen(0); } -void ScreenTest::Update(float f) { current->Update(f); } +void ScreenTest::Update(float f) { current->Update(f); Screen::Update(f); } void ScreenTest::HandleScreenMessage( const ScreenMessage SM ) { current->HandleScreenMessage(SM); } void ScreenTest::Draw() { current->Draw(); }