mirror of https://github.com/PCSX2/pcsx2.git
Remove memory card type from config ini.
No longer necessary with the auto-detect.
This commit is contained in:
parent
9efb8a341d
commit
1f6a1241f4
|
@ -611,10 +611,6 @@ void AppConfig::LoadSaveMemcards( IniInterface& ini )
|
|||
Mcd[slot].Enabled, Mcd[slot].Enabled );
|
||||
ini.Entry( pxsFmt( L"Slot%u_Filename", slot+1 ),
|
||||
Mcd[slot].Filename, Mcd[slot].Filename );
|
||||
int type = (int)Mcd[slot].Type;
|
||||
ini.Entry( pxsFmt( L"Slot%u_Type", slot + 1 ),
|
||||
type, (int)MemoryCardType::MemoryCard_File );
|
||||
Mcd[slot].Type = (MemoryCardType)type;
|
||||
}
|
||||
|
||||
for( uint slot=2; slot<8; ++slot )
|
||||
|
@ -626,10 +622,6 @@ void AppConfig::LoadSaveMemcards( IniInterface& ini )
|
|||
Mcd[slot].Enabled, Mcd[slot].Enabled );
|
||||
ini.Entry( pxsFmt( L"Multitap%u_Slot%u_Filename", mtport, mtslot ),
|
||||
Mcd[slot].Filename, Mcd[slot].Filename );
|
||||
int type = (int)Mcd[slot].Type;
|
||||
ini.Entry( pxsFmt( L"Multitap%u_Slot%u_Type", mtport, mtslot ),
|
||||
type, (int)MemoryCardType::MemoryCard_File );
|
||||
Mcd[slot].Type = (MemoryCardType)type;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue