s/m_sTranslitName/m_sNameTranslit/, for consistency with Song

This commit is contained in:
Glenn Maynard
2004-05-25 03:36:18 +00:00
parent b19f3972c4
commit c70ca6eb35
2 changed files with 3 additions and 4 deletions
+2 -2
View File
@@ -88,7 +88,7 @@ void Course::LoadFromCRSFile( CString sPath )
if( 0 == stricmp(sValueName, "COURSE") )
{
m_sName = sParams[1];
m_sTranslitName = m_sName;
m_sNameTranslit = m_sName;
}
else if( 0 == stricmp(sValueName, "REPEAT") )
{
@@ -275,7 +275,7 @@ void Course::Init()
m_bSortByMeter = false;
ZERO( m_iCustomMeter );
m_entries.clear();
m_sPath = m_sName = m_sTranslitName = m_sBannerPath = m_sCDTitlePath = "";
m_sPath = m_sName = m_sNameTranslit = m_sBannerPath = m_sCDTitlePath = "";
}
void Course::Save()
+1 -2
View File
@@ -83,8 +83,7 @@ public:
bool m_bIsAutogen; // was this created by AutoGen?
CString m_sPath;
CString m_sName;
CString m_sTranslitName; // used for unlocks
CString m_sName, m_sNameTranslit;
bool HasBanner() const;