Remove #EXTRA. Nothing ever uses it and DWI doesn't mention it,
either.
This commit is contained in:
@@ -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++ )
|
||||
{
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user