remove unused Background::LoadFromAniDir

This commit is contained in:
Glenn Maynard
2004-12-26 20:16:46 +00:00
parent 4563395b4b
commit e42236713d
2 changed files with 0 additions and 15 deletions
-14
View File
@@ -107,20 +107,6 @@ void Background::Unload()
m_fLastMusicSeconds = -9999;
}
void Background::LoadFromAniDir( CString sAniDir )
{
Unload();
if( PREFSMAN->m_fBGBrightness == 0.0f )
return;
BGAnimation* pTempBGA;
pTempBGA = new BGAnimation;
pTempBGA->LoadFromAniDir( sAniDir );
m_BGAnimations[STATIC_BACKGROUND] = pTempBGA;
m_aBGChanges.push_back( BackgroundChange(-1000, STATIC_BACKGROUND) );
}
BGAnimation *Background::CreateSongBGA( CString sBGName ) const
{
BGAnimation *pTempBGA;
-1
View File
@@ -47,7 +47,6 @@ public:
protected:
const Song *m_pSong;
void LoadFromAniDir( CString sAniDir );
void LoadFromRandom( float fFirstBeat, float fLastBeat, const TimingData &timing );
int FindBGSegmentForBeat( float fBeat ) const;