From 1f6a1241f4933544d346f8fe07094e4f29a837e0 Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Fri, 31 Jul 2015 01:12:46 +0200 Subject: [PATCH] Remove memory card type from config ini. No longer necessary with the auto-detect. --- pcsx2/gui/AppConfig.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pcsx2/gui/AppConfig.cpp b/pcsx2/gui/AppConfig.cpp index 16c7b9c5d6..3e057dad15 100644 --- a/pcsx2/gui/AppConfig.cpp +++ b/pcsx2/gui/AppConfig.cpp @@ -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; } }