remove some globally-defined CStrings

This commit is contained in:
Glenn Maynard
2003-04-25 05:45:53 +00:00
parent f45baa9fe6
commit ebe1b5c0c4
2 changed files with 12 additions and 5 deletions
+7
View File
@@ -13,6 +13,13 @@
#include "GameConstantsAndTypes.h"
#include "GameState.h"
const CString BG_ANIMS_DIR = "BGAnimations/";
const CString VISUALIZATIONS_DIR = "Visualizations/";
const CString RANDOMMOVIES_DIR = "RandomMovies/";
const CString DEFAULT_RANKING_NAME = "STEP";
const CString GROUP_ALL_MUSIC = "";
CString CategoryToString( RadarCategory cat )
{
switch( cat )
+5 -5
View File
@@ -168,7 +168,7 @@ enum RankingCategory
NUM_RANKING_CATEGORIES
};
const CString DEFAULT_RANKING_NAME = "STEP";
extern const CString DEFAULT_RANKING_NAME;
RankingCategory AverageMeterToRankingCategory( float fAverageMeter );
@@ -179,7 +179,7 @@ const int MAX_RANKING_NAME_LENGTH = 4;
//
// Group stuff
//
const CString GROUP_ALL_MUSIC = "";
extern const CString GROUP_ALL_MUSIC;
//
@@ -221,9 +221,9 @@ enum BattleResult
const CString BG_ANIMS_DIR = "BGAnimations/";
const CString VISUALIZATIONS_DIR = "Visualizations/";
const CString RANDOMMOVIES_DIR = "RandomMovies/";
extern const CString BG_ANIMS_DIR;
extern const CString VISUALIZATIONS_DIR;
extern const CString RANDOMMOVIES_DIR;