no message

This commit is contained in:
Chris Danford
2002-02-05 05:33:33 +00:00
parent 49f4997d47
commit 2949721b40
13 changed files with 346 additions and 190 deletions
+3 -4
View File
@@ -13,6 +13,7 @@
#include "RageUtil.h"
#include "ScreenDimensions.h"
#include "ThemeManager.h"
#include "RageBitmapTexture.h"
const CString VIS_DIR = "Visualizations\\";
@@ -45,10 +46,8 @@ bool Background::LoadFromSong( Song &song )
else
{
// load the static background (if available), and a visualization
if( song.HasBackground() )
m_sprSongBackground.Load( song.GetBackgroundPath() );
else
m_sprSongBackground.Load( THEME->GetPathTo(GRAPHIC_FALLBACK_BACKGROUND) );
if( song.HasBackground() ) m_sprSongBackground.Load( song.GetBackgroundPath(), HINT_DITHER );
else m_sprSongBackground.Load( THEME->GetPathTo(GRAPHIC_FALLBACK_BACKGROUND), HINT_DITHER );
m_sprSongBackground.StretchTo( CRect( 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT ) );
m_sprSongBackground.SetDiffuseColor( D3DXCOLOR(0,0,0,1) );