diff --git a/stepmania/src/Player.cpp b/stepmania/src/Player.cpp index eec908b605..68ff7bc617 100644 --- a/stepmania/src/Player.cpp +++ b/stepmania/src/Player.cpp @@ -190,7 +190,7 @@ void Player::Update( float fDeltaTime ) // // Check for TapNote misses // - int iNumMisses = UpdateTapNotesMissedOlderThan( GAMESTATE->m_fSongBeat - GetMaxBeatDifference() ); + UpdateTapNotesMissedOlderThan( GAMESTATE->m_fSongBeat - GetMaxBeatDifference() ); // // update HoldNotes logic diff --git a/stepmania/src/ScreenSelectStyle5th.cpp b/stepmania/src/ScreenSelectStyle5th.cpp index 7124491e9a..6339d8e6d1 100644 --- a/stepmania/src/ScreenSelectStyle5th.cpp +++ b/stepmania/src/ScreenSelectStyle5th.cpp @@ -441,12 +441,10 @@ void ScreenSelectStyle5th::TweenOnScreen() m_sprStyleIcon.BeginTweening( MENU_ELEMENTS_TWEEN_TIME ); m_sprStyleIcon.SetTweenZoomY( 1 ); - float fOrigExplanation1ZoomX = m_textExplanation1.GetZoomX(); m_textExplanation1.SetZoomX( 0 ); m_textExplanation1.BeginTweening( 0.6f ); m_textExplanation1.SetTweenZoomX( EXPLANATION1_ZOOM_X ); - float fOrigExplanation2ZoomX = m_textExplanation2.GetZoomX(); m_textExplanation2.SetZoomX( 0 ); m_textExplanation2.SetZoomX( 0 );