From 6a4104f810ef005bde0215bff7ca5d7e78d52f24 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 16 Sep 2003 00:48:30 +0000 Subject: [PATCH] Fix *.model. --- stepmania/src/NoteSkinManager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/NoteSkinManager.cpp b/stepmania/src/NoteSkinManager.cpp index c689401aa3..6cec3fa75f 100644 --- a/stepmania/src/NoteSkinManager.cpp +++ b/stepmania/src/NoteSkinManager.cpp @@ -246,6 +246,7 @@ CString NoteSkinManager::GetPathTo( CString sDir, CString sFileName ) CStringArray matches; // fill this with the possible files GetDirListing( sDir+sFileName+"*.redir", matches, false, true ); + GetDirListing( sDir+sFileName+"*.model", matches, false, true ); GetDirListing( sDir+sFileName+"*.txt", matches, false, true ); GetDirListing( sDir+sFileName+"*.sprite", matches, false, true ); GetDirListing( sDir+sFileName+"*.png", matches, false, true );