add #JACKET, #CDIMAGE, and #DISCIMAGE tags to .ssc format (up to v0.81 now).

This commit is contained in:
AJ Kelly
2012-01-04 12:42:53 -06:00
parent 3ada7de660
commit 63055788ca
4 changed files with 22 additions and 1 deletions
+15
View File
@@ -325,6 +325,21 @@ bool SSCLoader::LoadFromSimfile( const RString &sPath, Song &out, bool bFromCach
out.m_sBackgroundFile = sParams[1];
}
else if( sValueName=="JACKET" )
{
out.m_sJacketFile = sParams[1];
}
else if( sValueName=="CDIMAGE" )
{
out.m_sCDFile = sParams[1];
}
else if( sValueName=="DISCIMAGE" )
{
out.m_sDiscFile = sParams[1];
}
else if( sValueName=="LYRICSPATH" )
{
out.m_sLyricsFile = sParams[1];