From f92825aecb8656ea8d49dd368a72475defc2ce5f Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 23 Jan 2003 04:35:27 +0000 Subject: [PATCH] *.* -> * --- stepmania/src/Background.cpp | 2 +- stepmania/src/GameManager.cpp | 2 +- stepmania/src/SongCacheIndex.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/Background.cpp b/stepmania/src/Background.cpp index 0b3a03f206..c074db6a04 100644 --- a/stepmania/src/Background.cpp +++ b/stepmania/src/Background.cpp @@ -244,7 +244,7 @@ void Background::LoadFromSong( Song* pSong ) case MODE_ANIMATIONS: { CStringArray arrayPossibleAnims; - GetDirListing( BG_ANIMS_DIR+"*.*", arrayPossibleAnims, true, true ); + GetDirListing( BG_ANIMS_DIR+"*", arrayPossibleAnims, true, true ); // strip out "cvs" and "danger int i; for( i=arrayPossibleAnims.size()-1; i>=0; i-- ) diff --git a/stepmania/src/GameManager.cpp b/stepmania/src/GameManager.cpp index d9222d9523..8298eabc8d 100644 --- a/stepmania/src/GameManager.cpp +++ b/stepmania/src/GameManager.cpp @@ -1674,7 +1674,7 @@ void GameManager::GetNoteSkinNames( Game game, CStringArray &AddTo ) const GameDef* pGameDef = GAMEMAN->GetGameDefForGame( game ); CString sBaseSkinFolder = NOTESKIN_DIR + pGameDef->m_szName + "\\"; - GetDirListing( sBaseSkinFolder + "*.*", AddTo, true ); + GetDirListing( sBaseSkinFolder + "*", AddTo, true ); // strip out "CVS" for( int i=AddTo.size()-1; i>=0; i-- ) diff --git a/stepmania/src/SongCacheIndex.cpp b/stepmania/src/SongCacheIndex.cpp index d03c1c3ebe..3a14b11e41 100644 --- a/stepmania/src/SongCacheIndex.cpp +++ b/stepmania/src/SongCacheIndex.cpp @@ -30,7 +30,7 @@ void SongCacheIndex::ReadCacheIndex() LOG->Trace( "Cache format is out of date. Deleting all cache files." ); CStringArray asCacheFileNames; - GetDirListing( "Cache/*.*", asCacheFileNames ); + GetDirListing( "Cache/*", asCacheFileNames ); for( unsigned i=0; i