save profile data to memory card subdir so we don't clutter the root

This commit is contained in:
Chris Danford
2003-12-19 08:51:47 +00:00
parent 67a6fddcf3
commit 64f24895d7
6 changed files with 43 additions and 20 deletions
+2 -2
View File
@@ -159,12 +159,12 @@ void MemoryCardManager::AssignUnassignedCards()
unsigned i;
// search for card dir match
if( !PREFSMAN->m_sMemoryCardDir[p].empty() )
if( !PREFSMAN->m_sMemoryCardOsMountPoint[p].empty() )
{
for( i=0; i<vUnassignedDevices.size(); i++ )
{
UsbStorageDevice &usd = vUnassignedDevices[i];
if( usd.sOsMountDir.CompareNoCase(PREFSMAN->m_sMemoryCardDir[p]) == 0 ) // match
if( usd.sOsMountDir.CompareNoCase(PREFSMAN->m_sMemoryCardOsMountPoint[p]) == 0 ) // match
goto match;
}
}