Still fixing brokenness in Nonstop, Oni, Endless...

This commit is contained in:
Chris Danford
2003-02-16 23:54:30 +00:00
parent ac6af4624e
commit 8e3a14f516
11 changed files with 121 additions and 55 deletions
+8 -8
View File
@@ -22,13 +22,13 @@ class Course
{
struct Entry {
enum Type { fixed, random, random_within_group, players_best, players_worst } type;
CString group_name;
CString song_name; // the name of the song folder
Difficulty difficulty; // = DIFFICULTY_INVALID if no difficulty specified
int low_meter; // = -1 if no meter range specified
int high_meter; // = -1 if no meter range specified
int players_index; // ignored if type isn't a players_*
CString modifiers; // set player and song options using these
Song* pSong; // used in type=fixed
CString group_name; // used in type=random_within_group
Difficulty difficulty; // = DIFFICULTY_INVALID if no difficulty specified
int low_meter; // = -1 if no meter range specified
int high_meter; // = -1 if no meter range specified
int players_index; // ignored if type isn't a players_*
CString modifiers; // set player and song options using these
Entry()
{
@@ -98,7 +98,7 @@ public:
private:
Song *FindSong(CString sSongDir) const;
Song *FindSong(CString sGroup, CString sSong) const;
};