Added #TRANSLITERATION tag, and made it preferred over
the full title when sorting. Also noticed that a lot of string copying is done during the ABC sort (and it's call to GetFullTitle)-- optimizing this away may make in-between songs go much faster...
This commit is contained in:
@@ -74,6 +74,9 @@ bool SMLoader::LoadFromSMFile( CString sPath, Song &out )
|
||||
else if( 0==stricmp(sValueName,"SUBTITLE") )
|
||||
out.m_sSubTitle = sParams[1];
|
||||
|
||||
else if( 0==stricmp(sValueName,"TRANSLITERATION") )
|
||||
out.m_sTransliteration = sParams[1];
|
||||
|
||||
else if( 0==stricmp(sValueName,"ARTIST") )
|
||||
out.m_sArtist = sParams[1];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user