From 4d2f2308bd665e6eb9a71e0407aeaddfc7940ad0 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 3 Sep 2005 18:22:41 +0000 Subject: [PATCH] simplify --- stepmania/src/BackgroundUtil.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/BackgroundUtil.cpp b/stepmania/src/BackgroundUtil.cpp index d4c0694aa6..dde34ba4db 100644 --- a/stepmania/src/BackgroundUtil.cpp +++ b/stepmania/src/BackgroundUtil.cpp @@ -147,11 +147,11 @@ void BackgroundUtil::GetSongBGAnimations( const Song *pSong, const CString &sMat vsPathsOut.clear(); if( sMatch.empty() ) { - GetDirListing( pSong->GetSongDir()+sMatch+"*", vsPathsOut, true, true ); + GetDirListing( pSong->GetSongDir()+"*", vsPathsOut, true, true ); } else { - GetDirListing( pSong->GetSongDir()+sMatch, vsPathsOut, true, true ); + GetDirListing( pSong->GetSongDir()+sMatch, vsPathsOut, true, true ); } vsNamesOut.clear();