Added option for AutoAdjust

This commit is contained in:
Tom Jackson
2002-10-01 01:55:07 +00:00
parent ae16a45f88
commit 22974dde2a
3 changed files with 20 additions and 7 deletions
+6
View File
@@ -49,6 +49,12 @@ CString SongOptions::GetString()
sReturn += s + "xMusic, ";
}
switch( m_AutoAdjust )
{
case ADJUST_OFF: break;
case ADJUST_ON: sReturn += "AutoAdjust, "; break;
}
if( sReturn.GetLength() > 2 )
sReturn.Delete( sReturn.GetLength()-2, 2 ); // delete the trailing ", "
return sReturn;