diff --git a/stepmania/src/ScreenEdit.cpp b/stepmania/src/ScreenEdit.cpp index 02a433855b..41bdebc68f 100644 --- a/stepmania/src/ScreenEdit.cpp +++ b/stepmania/src/ScreenEdit.cpp @@ -1250,7 +1250,7 @@ void ScreenEdit::HandleMainMenuChoice( MainMenuChoice c, int* iAnswers ) // m_pSong->GetSongDir() has trailing slash g_BGChange.rows[add_song_bganimation].choices.clear(); - GetDirListing( m_pSong->GetSongDir()+"*.*", g_BGChange.rows[add_song_bganimation].choices, true ); + GetDirListing( m_pSong->GetSongDir()+"*", g_BGChange.rows[add_song_bganimation].choices, true ); g_BGChange.rows[add_song_movie].choices.clear(); GetDirListing( m_pSong->GetSongDir()+"*.avi", g_BGChange.rows[add_song_movie].choices, false ); @@ -1269,7 +1269,7 @@ void ScreenEdit::HandleMainMenuChoice( MainMenuChoice c, int* iAnswers ) GetDirListing( RANDOMMOVIES_DIR+"*.mpeg", g_BGChange.rows[add_global_random_movie].choices, false ); g_BGChange.rows[add_global_bganimation].choices.clear(); - GetDirListing( BG_ANIMS_DIR+"*.*", g_BGChange.rows[add_global_bganimation].choices, true ); + GetDirListing( BG_ANIMS_DIR+"*", g_BGChange.rows[add_global_bganimation].choices, true ); g_BGChange.rows[add_global_visualization].choices.clear(); GetDirListing( VISUALIZATIONS_DIR+"*.avi", g_BGChange.rows[add_global_visualization].choices, false ); diff --git a/stepmania/src/ScreenSelectMusic.cpp b/stepmania/src/ScreenSelectMusic.cpp index 49063af8c3..0c2db55bd7 100644 --- a/stepmania/src/ScreenSelectMusic.cpp +++ b/stepmania/src/ScreenSelectMusic.cpp @@ -747,7 +747,9 @@ void ScreenSelectMusic::AfterMusicChange() no_banner_change = true; } + m_sprMarathonBalloon.StopTweening(); OFF_COMMAND( m_sprMarathonBalloon ); + m_sprLongBalloon.StopTweening(); OFF_COMMAND( m_sprLongBalloon ); switch( m_MusicWheel.GetSelectedType() )