From 07ddb9721565cb52cccca58f6666109ae2db1b2b Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 19 Mar 2006 02:32:51 +0000 Subject: [PATCH] fix Update --- stepmania/src/ScreenTestInput.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ScreenTestInput.cpp b/stepmania/src/ScreenTestInput.cpp index 4daa861f7b..3c93041ded 100644 --- a/stepmania/src/ScreenTestInput.cpp +++ b/stepmania/src/ScreenTestInput.cpp @@ -23,6 +23,8 @@ public: // Update devices text // this->SetText( INPUTMAN->GetDisplayDevicesString() ); + + BitmapText::Update( fDeltaTime ); } virtual Actor *Copy() const; @@ -78,8 +80,9 @@ class InputList: public BitmapText } this->SetText( join( "\n", asInputs ) ); - } + BitmapText::Update( fDeltaTime ); + } }; REGISTER_ACTOR_CLASS( InputList );