Remove ScoreKeeperGuitar. It is pointless now.

Linux users, you may have to redo autogen.sh here.
This commit is contained in:
Jason Felds
2011-07-27 18:55:54 -04:00
parent 9505e09f58
commit 2e35024cfb
10 changed files with 6 additions and 193 deletions
+1 -4
View File
@@ -29,7 +29,6 @@ void ScoreKeeper::GetScoreOfLastTapInRow( const NoteData &nd, int iRow,
#include "ScoreKeeperNormal.h"
#include "ScoreKeeperRave.h"
#include "ScoreKeeperGuitar.h"
#include "ScoreKeeperShared.h"
ScoreKeeper* ScoreKeeper::MakeScoreKeeper( RString sClassName, PlayerState *pPlayerState, PlayerStageStats *pPlayerStageStats )
@@ -38,11 +37,9 @@ ScoreKeeper* ScoreKeeper::MakeScoreKeeper( RString sClassName, PlayerState *pPla
return new ScoreKeeperNormal( pPlayerState, pPlayerStageStats );
else if( sClassName == "ScoreKeeperRave" )
return new ScoreKeeperRave( pPlayerState, pPlayerStageStats );
else if( sClassName == "ScoreKeeperGuitar" )
return new ScoreKeeperGuitar( pPlayerState, pPlayerStageStats );
else if( sClassName == "ScoreKeeperShared" )
return new ScoreKeeperShared( pPlayerState, pPlayerStageStats );
FAIL_M( sClassName );
FAIL_M( ssprintf("Invalid ScoreKeeper named %s!", sClassName.c_str() ));
}