load profile from memory card, fix memory card file flushing
This commit is contained in:
@@ -206,4 +206,16 @@ match:
|
||||
m_soundReady.Play();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void MemoryCardManager::FlushAllDisks()
|
||||
{
|
||||
for( int p=0; p<NUM_PLAYERS; p++ )
|
||||
{
|
||||
if( !m_Device[p].IsBlank() ) // they already have an assigned card
|
||||
continue; // skip
|
||||
if( m_bWriteError[p] || m_bTooLate[p] )
|
||||
continue; // skip
|
||||
m_pDriver->Flush(&m_Device[p]);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user