From f61f5ddfed0f2402e80df4baea60626ddf0af81f Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 10 Sep 2005 23:47:10 +0000 Subject: [PATCH] cleanup --- stepmania/src/StageStats.cpp | 5 +++++ stepmania/src/StageStats.h | 10 ---------- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/stepmania/src/StageStats.cpp b/stepmania/src/StageStats.cpp index 830d05f7a3..3a80d3c8d0 100644 --- a/stepmania/src/StageStats.cpp +++ b/stepmania/src/StageStats.cpp @@ -5,6 +5,11 @@ #include "Steps.h" #include "song.h" +/* + * Arcade: for the current stage (one song). + * Nonstop/Oni/Endless: for current course (which usually contains multiple songs) + */ + StageStats::StageStats() { playMode = PLAY_MODE_INVALID; diff --git a/stepmania/src/StageStats.h b/stepmania/src/StageStats.h index 5d488860f9..48d38abe56 100644 --- a/stepmania/src/StageStats.h +++ b/stepmania/src/StageStats.h @@ -48,16 +48,6 @@ public: void PushSelf( lua_State *L ); }; -/* - * This was in GameState, but GameState.h is used by tons of files, and this object - * is only used by 20 or so. - * - * Stage Statistics: - * Arcade: for the current stage (one song). - * Nonstop/Oni/Endless: for current course (which usually contains multiple songs) - */ - - #endif /*