Rename title accessors in Song.
Add a preference to prefer transliterations. Press F9 in the music
select screen to toggle it ("what's that kanji again?"); appearance
options entry forthcoming.
Hopefully fix wheel sections; we were assuming that sections were
always sorted the same as the songs in them, but this isn't true
with "OTHER".
This commit is contained in:
@@ -99,9 +99,9 @@ bool TextBanner::LoadFromSong( const Song* pSong )
|
||||
return true;
|
||||
}
|
||||
|
||||
m_textTitle.SetText( pSong->m_sMainTitle );
|
||||
m_textSubTitle.SetText( pSong->m_sSubTitle );
|
||||
m_textArtist.SetText( g_sArtistPrependString + pSong->m_sArtist );
|
||||
m_textTitle.SetText( pSong->GetDisplayMainTitle() );
|
||||
m_textSubTitle.SetText( pSong->GetDisplaySubTitle() );
|
||||
m_textArtist.SetText( g_sArtistPrependString + pSong->GetDisplayArtist() );
|
||||
|
||||
bool bTwoLines = pSong->m_sSubTitle.length() == 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user