From b9ef5b0f50fc4d923e75e23e005f58dda7bab769 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 21 Jul 2003 19:36:02 +0000 Subject: [PATCH] Remove #EXTRA. Nothing ever uses it and DWI doesn't mention it, either. --- stepmania/src/Course.cpp | 4 ---- stepmania/src/Course.h | 1 - 2 files changed, 5 deletions(-) diff --git a/stepmania/src/Course.cpp b/stepmania/src/Course.cpp index af26551407..ff0505dac9 100644 --- a/stepmania/src/Course.cpp +++ b/stepmania/src/Course.cpp @@ -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