aboutsummaryrefslogtreecommitdiff
path: root/source/memmap.c
diff options
context:
space:
mode:
authormwksoul2015-02-22 16:02:44 +0000
committermwksoul2015-02-22 16:02:44 +0000
commit1f2818bdd38cc225faa840e1aca100866e515046 (patch)
tree7381b2d03f7294823ea253a97a0fb4638051e7f5 /source/memmap.c
parent7114688cf0f5707768135ec05184635b34d54f79 (diff)
downloadsnes9x2005-1f2818bdd38cc225faa840e1aca100866e515046.tar.gz
snes9x2005-1f2818bdd38cc225faa840e1aca100866e515046.tar.bz2
snes9x2005-1f2818bdd38cc225faa840e1aca100866e515046.zip
Backported S-DD1 emulation.
Diffstat (limited to 'source/memmap.c')
-rw-r--r--source/memmap.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/memmap.c b/source/memmap.c
index 12d65ff..01d0707 100644
--- a/source/memmap.c
+++ b/source/memmap.c
@@ -1250,9 +1250,6 @@ void InitROM(bool Interleaved)
if ((Memory.ROMType & 0xf0) == 0x40)
Settings.SDD1 = !Settings.ForceNoSDD1;
- if (Settings.SDD1)
- S9xLoadSDD1Data();
-
if (((Memory.ROMType & 0xF0) == 0xF0) & ((Memory.ROMSpeed & 0x0F) != 5))
{
Memory.SRAMSize = 2;
@@ -1534,8 +1531,6 @@ bool LoadSRAM(const char* filename)
S9xHardResetSRTC();
return (false);
}
- if (Settings.SDD1)
- S9xSDD1LoadLoggedData();
return (true);
}
@@ -1555,9 +1550,6 @@ bool SaveSRAM(const char* filename)
S9xSRTCPreSaveState();
}
- if (Settings.SDD1)
- S9xSDD1SaveLoggedData();
-
if (size > 0x20000)
size = 0x20000;