All BGAnimations are "generic", except for those loaded directly from

Background.  This should be more consistent (we were creating BGAnimations
as non-generic in some places where it probably should have been generic).
This means all themes need to explicitly set the position of all BGAnimation
graphics, which is good practice anyway.
This commit is contained in:
Glenn Maynard
2005-01-16 18:25:29 +00:00
parent 8ec79348bc
commit 8f99164eb5
3 changed files with 2 additions and 10 deletions
+1 -1
View File
@@ -158,7 +158,7 @@ Actor *Background::CreateSongBGA( CString sBGName ) const
GetDirListing( m_pSong->GetSongDir()+sBGName, asFiles, true, true );
if( !asFiles.empty() )
{
pTempBGA = new BGAnimation;
pTempBGA = new BGAnimation( false );
pTempBGA->LoadFromAniDir( asFiles[0] );
return pTempBGA;
}