From 78300acc73fde27cc81cea174c2c2144da6d79f2 Mon Sep 17 00:00:00 2001 From: Kevin Slaughter Date: Thu, 11 Sep 2003 08:49:37 +0000 Subject: [PATCH] Remove GetHowToPlayAnimationPath().. This has been superceded by ScreenHowToPlay steps.sm --- stepmania/src/Character.cpp | 1 - stepmania/src/Character.h | 1 - 2 files changed, 2 deletions(-) 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;