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:
Jared Roberts
2002-09-16 05:49:46 +00:00
parent 326b1d4df0
commit a6e74da707
5 changed files with 19 additions and 3 deletions
+3
View File
@@ -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];