Split transliterations into title, subtitle and artist
Add naming submenu for the edit screen wherein title, subtitle, artist and their transliterations can be changed Remove the top-level keys for same actions Make edit screen submenus shortcut-key friendly
This commit is contained in:
@@ -74,12 +74,18 @@ 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];
|
||||
|
||||
else if( 0==stricmp(sValueName,"TITLETRANSLIT") )
|
||||
out.m_sMainTitleTranslit = sParams[1];
|
||||
|
||||
else if( 0==stricmp(sValueName,"SUBTITLETRANSLIT") )
|
||||
out.m_sSubTitleTranslit = sParams[1];
|
||||
|
||||
else if( 0==stricmp(sValueName,"ARTISTTRANSLIT") )
|
||||
out.m_sArtistTranslit = sParams[1];
|
||||
|
||||
else if( 0==stricmp(sValueName,"CREDIT") )
|
||||
out.m_sCredit = sParams[1];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user