From c2310eeab528df939a2f46671962070538279694 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 3 Sep 2005 22:09:14 +0000 Subject: [PATCH] whoops. Fix variable name conflict. --- stepmania/src/RageFileManager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/RageFileManager.cpp b/stepmania/src/RageFileManager.cpp index 3442468e21..2a61067767 100644 --- a/stepmania/src/RageFileManager.cpp +++ b/stepmania/src/RageFileManager.cpp @@ -799,11 +799,11 @@ RageFileBasic *RageFileManager::OpenForWriting( CString sPath, int mode, int &iE { const int iDriver = Values[i].first; LoadedDriver &ld = aDriverList[iDriver]; - const CString sPath = ld.GetPath( sPath ); - ASSERT( !sPath.empty() ); + const CString sDriverPath = ld.GetPath( sPath ); + ASSERT( !sDriverPath.empty() ); int iThisError; - RageFileBasic *pRet = ld.m_pDriver->Open( sPath, mode, iThisError ); + RageFileBasic *pRet = ld.m_pDriver->Open( sDriverPath, mode, iThisError ); if( pRet ) return pRet;