From c70ca6eb355d002bbc15d31f98256eec7cd8b106 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 25 May 2004 03:36:18 +0000 Subject: [PATCH] s/m_sTranslitName/m_sNameTranslit/, for consistency with Song --- stepmania/src/Course.cpp | 4 ++-- stepmania/src/Course.h | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/stepmania/src/Course.cpp b/stepmania/src/Course.cpp index 0e3c80f9f9..ecc646dfd2 100644 --- a/stepmania/src/Course.cpp +++ b/stepmania/src/Course.cpp @@ -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() diff --git a/stepmania/src/Course.h b/stepmania/src/Course.h index e38bc6718b..41dcbdbf09 100644 --- a/stepmania/src/Course.h +++ b/stepmania/src/Course.h @@ -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;