updated course unlocking to take transliterated (non-translated) titles

redid code for unlock screen so courses and songs are displayed
This commit is contained in:
Andrew Wong
2003-07-10 14:44:13 +00:00
parent a49208c5fb
commit 721df8ea02
5 changed files with 37 additions and 9 deletions
+6
View File
@@ -36,6 +36,7 @@ struct SongEntry
int m_iRouletteSeed;
bool isLocked; // cached locked tag
bool isCourse; // used for unlock screen
SongEntry();
@@ -56,6 +57,9 @@ public:
float ArcadePointsUntilNextUnlock();
float SongPointsUntilNextUnlock();
SongEntry *FindSong( CString songname );
// used for screen unlock
bool SongIsLocked( const Song *song );
bool CourseIsLocked( const Course *course );
@@ -74,6 +78,8 @@ public:
float UnlockToasty();
bool RouletteUnlock( const Song *song );
void DebugPrint();
private: