summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLPFaint99 <lpfaint99@gmail.com>2010-01-21 06:35:58 +0000
committerLPFaint99 <lpfaint99@gmail.com>2010-01-21 06:35:58 +0000
commit98583da7badaa03189a0ff46cce61dfd664fac2b (patch)
tree532c150529b35438d160b9fc8635af06ae025def /Source/Core
parent6cdf13e6a7640b600a8f282ded1eae895c1d524f (diff)
Reenable my change from r3999, works correctly now due to godisgovernment's change in r4437 (adding EXIDEVICE_NONE)
Fixes issue 1152. Fixes issue 1229. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4913 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/Src/HW/EXI_DeviceMemoryCard.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/Core/Core/Src/HW/EXI_DeviceMemoryCard.cpp b/Source/Core/Core/Src/HW/EXI_DeviceMemoryCard.cpp
index 5b400b5219..d1234543bf 100644
--- a/Source/Core/Core/Src/HW/EXI_DeviceMemoryCard.cpp
+++ b/Source/Core/Core/Src/HW/EXI_DeviceMemoryCard.cpp
@@ -437,10 +437,8 @@ void CEXIMemoryCard::TransferByte(u8 &byte)
void CEXIMemoryCard::DoState(PointerWrap &p)
{
-#if 0 // Makes savestates worse for 1st party games (SMS, ZWW) but better for third party games
int slot = 0;
if (GetFileName() == SConfig::GetInstance().m_strMemoryCardA)
slot = 1;
ExpansionInterface::ChangeDevice(slot, slot ? EXIDEVICE_MEMORYCARD_B : EXIDEVICE_MEMORYCARD_A, 0);
-#endif
}