From 80efef76b5d8c2677243f2cbf35585fb739c8f92 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Fri, 15 Feb 2008 09:44:02 +0000 Subject: [PATCH] load one element and call commands on it because there are too many sorts to have graphics for each --- stepmania/src/MusicSortDisplay.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/MusicSortDisplay.h b/stepmania/src/MusicSortDisplay.h index 4427fd93b6..fa7d56dcb0 100644 --- a/stepmania/src/MusicSortDisplay.h +++ b/stepmania/src/MusicSortDisplay.h @@ -1,12 +1,12 @@ #ifndef MUSIC_SORT_DISPLAY_H #define MUSIC_SORT_DISPLAY_H -#include "Sprite.h" +#include "ActorFrame.h" #include "GameConstantsAndTypes.h" -class MusicSortDisplay : public Sprite +class MusicSortDisplay : public ActorFrame { public: MusicSortDisplay(); @@ -15,7 +15,7 @@ public: virtual void HandleMessage( const Message &msg ); protected: - + AutoActor m_spr; }; #endif