diff --git a/stepmania/src/Character.cpp b/stepmania/src/Character.cpp index c91ed79009..fdf6127bcc 100644 --- a/stepmania/src/Character.cpp +++ b/stepmania/src/Character.cpp @@ -56,7 +56,6 @@ CString Character::GetModelPath() { return m_sCharDir + "model.txt"; } CString Character::GetRestAnimationPath() { return DerefRedir(GetRandomFileInDir(m_sCharDir + "Rest" SLASH)); } CString Character::GetWarmUpAnimationPath() { return DerefRedir(GetRandomFileInDir(m_sCharDir + "WarmUp" SLASH)); } CString Character::GetDanceAnimationPath() { return DerefRedir(GetRandomFileInDir(m_sCharDir + "Dance" SLASH)); } -CString Character::GetHowToPlayAnimationPath() { return DerefRedir(GetRandomFileInDir(m_sCharDir + "HowToPlay" SLASH)); } CString Character::GetTakingABreakPath() { CStringArray as; diff --git a/stepmania/src/Character.h b/stepmania/src/Character.h index 11859451e7..070e8f0ed6 100644 --- a/stepmania/src/Character.h +++ b/stepmania/src/Character.h @@ -29,7 +29,6 @@ public: CString GetRestAnimationPath(); CString GetWarmUpAnimationPath(); CString GetDanceAnimationPath(); - CString GetHowToPlayAnimationPath(); CString m_sCharDir; CString m_sName;