prefs name cleanup

This commit is contained in:
Chris Danford
2004-12-04 06:09:30 +00:00
parent 783e492b0b
commit 2b9d990e71
10 changed files with 31 additions and 31 deletions
+3 -3
View File
@@ -1257,19 +1257,19 @@ CString Song::GetBackgroundPath() const
CString Song::GetDisplayMainTitle() const
{
if(!PREFSMAN->m_bShowNative) return GetTranslitMainTitle();
if(!PREFSMAN->m_bShowNativeLanguage) return GetTranslitMainTitle();
return m_sMainTitle;
}
CString Song::GetDisplaySubTitle() const
{
if(!PREFSMAN->m_bShowNative) return GetTranslitSubTitle();
if(!PREFSMAN->m_bShowNativeLanguage) return GetTranslitSubTitle();
return m_sSubTitle;
}
CString Song::GetDisplayArtist() const
{
if(!PREFSMAN->m_bShowNative) return GetTranslitArtist();
if(!PREFSMAN->m_bShowNativeLanguage) return GetTranslitArtist();
return m_sArtist;
}