fix linux compile

This commit is contained in:
Glenn Maynard
2004-01-14 08:05:05 +00:00
parent bbbb76d551
commit 7e0f8b49e8
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -97,7 +97,7 @@ public:
struct Info
{
Info(): pSong(NULL), pNotes(NULL), Random(false), CourseDifficulty(COURSE_DIFFICULTY_INVALID) { }
Info(): pSong(NULL), pNotes(NULL), Random(false), Difficulty(COURSE_DIFFICULTY_INVALID) { }
void GetAttackArray( AttackArray &out ) const;
Song* pSong;
@@ -106,7 +106,7 @@ public:
AttackArray Attacks;
bool Random;
bool Mystery;
CourseDifficulty CourseDifficulty;
CourseDifficulty Difficulty;
/* Corresponding entry in m_entries: */
int CourseIndex;
};