whoops. Fix variable name conflict.

This commit is contained in:
Glenn Maynard
2005-09-03 22:09:14 +00:00
parent 4f5a07388a
commit c2310eeab5
+3 -3
View File
@@ -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;