From 2856e3760b625e2cb6681b7bdde66a5b3c412f67 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 3 Jun 2004 23:17:27 +0000 Subject: [PATCH] fix NormalizePath not removing leading dots --- stepmania/src/RageFileManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageFileManager.cpp b/stepmania/src/RageFileManager.cpp index 8c74c42db9..0c2b806eb8 100644 --- a/stepmania/src/RageFileManager.cpp +++ b/stepmania/src/RageFileManager.cpp @@ -231,7 +231,7 @@ CString LoadedDriver::GetPath( const CString &path ) static void NormalizePath( CString &sPath ) { FixSlashesInPlace( sPath ); - CollapsePath( sPath ); + CollapsePath( sPath, true ); } bool ilt( const CString &a, const CString &b ) { return a.CompareNoCase(b) < 0; }