Remove #EXTRA. Nothing ever uses it and DWI doesn't mention it,

either.
This commit is contained in:
Glenn Maynard
2003-07-21 19:36:02 +00:00
parent b447ccb01d
commit b9ef5b0f50
2 changed files with 0 additions and 5 deletions
-4
View File
@@ -154,9 +154,6 @@ void Course::LoadFromCRSFile( CString sPath )
else if( 0 == stricmp(sValueName, "LIVES") )
m_iLives = atoi( sParams[1] );
else if( 0 == stricmp(sValueName, "EXTRA") )
m_iExtra = atoi( sParams[1] );
else if( 0 == stricmp(sValueName, "SONG") )
{
Entry new_entry;
@@ -278,7 +275,6 @@ void Course::Save()
fprintf( fp, "#COURSE:%s;\n", m_sName.c_str() );
fprintf( fp, "#REPEAT:%s;\n", m_bRepeat ? "YES" : "NO" );
fprintf( fp, "#LIVES:%i;\n", m_iLives );
fprintf( fp, "#EXTRA:%i;\n", m_iExtra );
for( unsigned i=0; i<m_entries.size(); i++ )
{
-1
View File
@@ -58,7 +58,6 @@ public:
bool m_bRandomize; // play the songs in a random order
bool m_bDifficult; // only make something difficult once
int m_iLives; // -1 means use bar life meter
int m_iExtra; // extra stage number... // not used? -Chris
int GetEstimatedNumStages() const { return m_entries.size(); }
bool HasDifficult( NotesType nt ) const;