From 6c4276648a6fb498f9cc74dfbd41b422a64198bb Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 4 Jul 2005 20:44:07 +0000 Subject: [PATCH] cleanup --- stepmania/src/HoldJudgment.cpp | 11 ----------- stepmania/src/HoldJudgment.h | 7 +------ stepmania/src/Judgment.cpp | 1 - stepmania/src/Judgment.h | 1 - 4 files changed, 1 insertion(+), 19 deletions(-) diff --git a/stepmania/src/HoldJudgment.cpp b/stepmania/src/HoldJudgment.cpp index 051739f02d..e077dea083 100644 --- a/stepmania/src/HoldJudgment.cpp +++ b/stepmania/src/HoldJudgment.cpp @@ -2,7 +2,6 @@ #include "HoldJudgment.h" #include "RageUtil.h" #include "GameConstantsAndTypes.h" -#include "PrefsManager.h" #include "ThemeManager.h" #include "ThemeMetric.h" @@ -24,16 +23,6 @@ HoldJudgment::HoldJudgment() this->AddChild( &m_sprJudgment ); } -void HoldJudgment::Update( float fDeltaTime ) -{ - ActorFrame::Update( fDeltaTime ); -} - -void HoldJudgment::DrawPrimitives() -{ - ActorFrame::DrawPrimitives(); -} - void HoldJudgment::Reset() { m_sprJudgment.SetDiffuse( RageColor(1,1,1,0) ); diff --git a/stepmania/src/HoldJudgment.h b/stepmania/src/HoldJudgment.h index d71daea534..7e2fd52a17 100644 --- a/stepmania/src/HoldJudgment.h +++ b/stepmania/src/HoldJudgment.h @@ -3,9 +3,7 @@ #include "Sprite.h" #include "ActorFrame.h" -#include "song.h" -#include "BitmapText.h" -#include "PrefsManager.h" +#include "GameConstantsAndTypes.h" class HoldJudgment : public ActorFrame @@ -13,9 +11,6 @@ class HoldJudgment : public ActorFrame public: HoldJudgment(); - virtual void Update( float fDeltaTime ); - virtual void DrawPrimitives(); - void Reset(); void SetHoldJudgment( HoldNoteScore hns ); diff --git a/stepmania/src/Judgment.cpp b/stepmania/src/Judgment.cpp index a16fdafac2..a3bff301a5 100644 --- a/stepmania/src/Judgment.cpp +++ b/stepmania/src/Judgment.cpp @@ -2,7 +2,6 @@ #include "Judgment.h" #include "RageUtil.h" #include "GameConstantsAndTypes.h" -#include "PrefsManager.h" #include "GameState.h" #include "ThemeManager.h" #include "ThemeMetric.h" diff --git a/stepmania/src/Judgment.h b/stepmania/src/Judgment.h index af217cc3ea..2d48a96452 100644 --- a/stepmania/src/Judgment.h +++ b/stepmania/src/Judgment.h @@ -6,7 +6,6 @@ #include "Sprite.h" #include "ActorFrame.h" #include "GameConstantsAndTypes.h" -#include "BitmapText.h" class Judgment : public ActorFrame