From 420187dbfdea229135293a4bfbda535eb8305b6a Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 5 May 2005 03:39:49 +0000 Subject: [PATCH] cleanup SWME handles music --- stepmania/src/ScreenBookkeeping.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/stepmania/src/ScreenBookkeeping.cpp b/stepmania/src/ScreenBookkeeping.cpp index 73fd43111c..04e0d12bc0 100644 --- a/stepmania/src/ScreenBookkeeping.cpp +++ b/stepmania/src/ScreenBookkeeping.cpp @@ -28,7 +28,6 @@ void ScreenBookkeeping::Init() m_textTitle.LoadFromFont( THEME->GetPathF("Common","title") ); m_textTitle.SetText( "header" ); m_textTitle.SetXY( SCREEN_CENTER_X, 60 ); - m_textTitle.SetDiffuse( RageColor(1,1,1,1) ); m_textTitle.SetZoom( 0.8f ); this->AddChild( &m_textTitle ); @@ -39,14 +38,11 @@ void ScreenBookkeeping::Init() m_textCols[i].LoadFromFont( THEME->GetPathF("Common","normal") ); m_textCols[i].SetText( ssprintf("%d",i) ); m_textCols[i].SetXY( fX, fY ); - m_textCols[i].SetDiffuse( RageColor(1,1,1,1) ); m_textCols[i].SetZoom( 0.6f ); this->AddChild( &m_textCols[i] ); } ChangeView( (View)0 ); - - SOUND->PlayMusic( THEME->GetPathS("ScreenBookkeeping","music") ); } ScreenBookkeeping::~ScreenBookkeeping()