add #CHARTSTYLE tag to Steps for .ssc files; Keyboard/Pad/whatever else you can think of, just keep it standardized

This commit is contained in:
AJ Kelly
2011-02-14 20:53:15 -06:00
parent db8bc289a3
commit 95af29b5e4
6 changed files with 33 additions and 2 deletions
+11
View File
@@ -634,6 +634,11 @@ bool SSCLoader::LoadFromSSCFile( const RString &sPath, Song &out, bool bFromCach
pNewNotes->m_StepsType = GAMEMAN->StringToStepsType( sParams[1] );
}
else if( sValueName=="CHARTSTYLE" )
{
pNewNotes->SetChartStyle( sParams[1] );
}
else if( sValueName=="DESCRIPTION" )
{
pNewNotes->SetDescription( sParams[1] );
@@ -990,6 +995,12 @@ bool SSCLoader::LoadEditFromMsd( const MsdFile &msd, const RString &sEditFilePat
bSSCFormat = true;
}
else if( sValueName=="CHARTSTYLE" )
{
pNewNotes->SetChartStyle( sParams[1] );
bSSCFormat = true;
}
else if( sValueName=="DESCRIPTION" )
{
pNewNotes->SetDescription( sParams[1] );