From 336a035660dc9a77dc30e5e0dc74b07dc735b01a Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 15 Jan 2005 13:56:05 +0000 Subject: [PATCH] BGAnimationLayer::LoadFromIni -> BGAnimationLayer::LoadFromNode --- stepmania/src/BGAnimation.cpp | 2 +- stepmania/src/BGAnimationLayer.cpp | 2 +- stepmania/src/BGAnimationLayer.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/BGAnimation.cpp b/stepmania/src/BGAnimation.cpp index f19445e691..9fea62ba65 100644 --- a/stepmania/src/BGAnimation.cpp +++ b/stepmania/src/BGAnimation.cpp @@ -112,7 +112,7 @@ void AddLayersFromAniDir( const CString &_sAniDir, vector &layersAddTo, { // import as a single layer BGAnimationLayer* pLayer = new BGAnimationLayer( Generic ); - pLayer->LoadFromIni( sAniDir, *pKey ); + pLayer->LoadFromNode( sAniDir, *pKey ); layersAddTo.push_back( pLayer ); } } diff --git a/stepmania/src/BGAnimationLayer.cpp b/stepmania/src/BGAnimationLayer.cpp index 424d3a1fc6..b9eda4d544 100644 --- a/stepmania/src/BGAnimationLayer.cpp +++ b/stepmania/src/BGAnimationLayer.cpp @@ -395,7 +395,7 @@ void BGAnimationLayer::LoadFromAniLayerFile( const CString& sPath ) m_SubActors[i]->SetBlendMode( BLEND_ADD ); } -void BGAnimationLayer::LoadFromIni( const CString& sAniDir_, const XNode& layer ) +void BGAnimationLayer::LoadFromNode( const CString& sAniDir_, const XNode& layer ) { CString sAniDir = sAniDir_; diff --git a/stepmania/src/BGAnimationLayer.h b/stepmania/src/BGAnimationLayer.h index f285b4b432..2911717266 100644 --- a/stepmania/src/BGAnimationLayer.h +++ b/stepmania/src/BGAnimationLayer.h @@ -21,7 +21,7 @@ public: void LoadFromAniLayerFile( const CString& sPath ); void LoadFromMovie( const CString& sMoviePath ); void LoadFromVisualization( const CString& sMoviePath ); - void LoadFromIni( const CString& sAniDir, const XNode& layer ); + void LoadFromNode( const CString& sAniDir, const XNode& layer ); void Update( float fDeltaTime ); void DrawPrimitives();