From 4d931a65779591befc3aef09775ae53f3e5c2b07 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 1 Oct 2006 02:32:23 +0000 Subject: [PATCH] Cleanup. --- stepmania/src/ScoreKeeperRave.cpp | 9 ++------- stepmania/src/ScoreKeeperRave.h | 9 ++++----- 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/stepmania/src/ScoreKeeperRave.cpp b/stepmania/src/ScoreKeeperRave.cpp index c6cda9d9a3..e92e5dc94e 100644 --- a/stepmania/src/ScoreKeeperRave.cpp +++ b/stepmania/src/ScoreKeeperRave.cpp @@ -13,16 +13,11 @@ ThemeMetric ATTACK_DURATION_SECONDS ("ScoreKeeperRave","AttackDurationSeconds"); -ScoreKeeperRave::ScoreKeeperRave( PlayerState* pPlayerState, PlayerStageStats* pPlayerStageStats ) : - ScoreKeeper(pPlayerState,pPlayerStageStats) +ScoreKeeperRave::ScoreKeeperRave( PlayerState *pPlayerState, PlayerStageStats *pPlayerStageStats ) : + ScoreKeeper(pPlayerState, pPlayerStageStats) { } -void ScoreKeeperRave::OnNextSong( int iSongInCourseIndex, const Steps* pSteps, const NoteData* pNoteData ) -{ - -} - void ScoreKeeperRave::HandleTapScore( const TapNote &tn ) { TapNoteScore score = tn.result.tns; diff --git a/stepmania/src/ScoreKeeperRave.h b/stepmania/src/ScoreKeeperRave.h index ac5b5abb55..0b122e4f5c 100644 --- a/stepmania/src/ScoreKeeperRave.h +++ b/stepmania/src/ScoreKeeperRave.h @@ -1,7 +1,7 @@ /* ScoreKeeperRave - Launches attacks in PLAY_MODE_RAVE. */ -#ifndef ScoreKeeperRave_H -#define ScoreKeeperRave_H +#ifndef SCORE_KEEPER_RAVE_H +#define SCORE_KEEPER_RAVE_H #include "ScoreKeeper.h" #include "GameConstantsAndTypes.h" @@ -10,9 +10,8 @@ class ScoreKeeperRave : public ScoreKeeper { public: - ScoreKeeperRave( PlayerState* pPlayerState, PlayerStageStats* pPlayerStageStats ); - virtual ~ScoreKeeperRave() { } - void OnNextSong( int iSongInCourseIndex, const Steps* pSteps, const NoteData* pNoteData ); // before a song plays (called multiple times if course) + ScoreKeeperRave( PlayerState *pPlayerState, PlayerStageStats *pPlayerStageStats ); + void OnNextSong( int iSongInCourseIndex, const Steps *pSteps, const NoteData *pNoteData ) { } void HandleTapScore( const TapNote &tn ); void HandleTapRowScore( const NoteData &nd, int iRow ); void HandleHoldScore( const TapNote &tn );