From 0e82fff3ff9d3bac19036f0d3167ad87fc0909bf Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 24 Nov 2014 15:00:54 +0000 Subject: [PATCH] Clean out ClearSaveRam() calls since they are no longer used --- .../movie/bkm/BkmMovie.ModeApi.cs | 21 ------------------- .../Base Implementations/NullEmulator.cs | 1 - BizHawk.Emulation.Cores/Calculator/TI83.cs | 2 +- .../Computers/Commodore64/C64.Savestate.cs | 4 ---- .../Consoles/Atari/2600/Atari2600.cs | 2 -- .../Consoles/Atari/7800/Atari7800.cs | 6 +----- .../Consoles/Atari/lynx/Lynx.cs | 6 ------ .../Consoles/Coleco/ColecoVision.cs | 1 - .../Consoles/Intellivision/Intellivision.cs | 6 ------ .../Consoles/Nintendo/GBA/Meteor.cs | 7 ------- .../Consoles/Nintendo/GBA/VBANext.cs | 6 ------ .../Consoles/Nintendo/Gameboy/Gambatte.cs | 17 --------------- .../Consoles/Nintendo/Gameboy/GambatteLink.cs | 6 ------ .../Consoles/Nintendo/N64/N64.cs | 5 ----- .../Consoles/Nintendo/NES/FDS/FDS.cs | 11 ---------- .../Consoles/Nintendo/NES/NES.cs | 14 ------------- .../Consoles/Nintendo/QuickNES/QuickNES.cs | 5 ----- .../Consoles/Nintendo/SNES/LibsnesCore.cs | 6 ------ .../Consoles/Nintendo/SNES9X/Snes9x.cs | 6 ++---- .../Consoles/PC Engine/PCEngine.cs | 7 ++----- .../Consoles/Sega/Genesis/Cart/SaveRAM.cs | 1 - .../Consoles/Sega/SMS/SMS.cs | 6 +----- .../Consoles/Sega/Saturn/Yabause.cs | 12 ----------- .../Consoles/Sega/gpgx/GPGX.cs | 12 ----------- .../Consoles/Sony/PSP/PSP.cs | 5 ----- .../Consoles/Sony/PSX/Octoshock.cs | 3 --- .../Consoles/WonderSwan/WonderSwan.cs | 7 +------ BizHawk.Emulation.Cores/LibRetroEmulator.cs | 15 +------------ 28 files changed, 9 insertions(+), 191 deletions(-) diff --git a/BizHawk.Client.Common/movie/bkm/BkmMovie.ModeApi.cs b/BizHawk.Client.Common/movie/bkm/BkmMovie.ModeApi.cs index 18a9b0c976..27c562eb99 100644 --- a/BizHawk.Client.Common/movie/bkm/BkmMovie.ModeApi.cs +++ b/BizHawk.Client.Common/movie/bkm/BkmMovie.ModeApi.cs @@ -30,20 +30,6 @@ namespace BizHawk.Client.Common public void StartNewRecording() { - // adelikat: ClearSaveRam shouldn't be here at all most likely, especially considering this is an implementation detail - // If Starting a new recording requires clearing sram it shoudl be done at a higher layer and not rely on all IMovies doing this - // Haven't removed it yet because I coudln't guarantee that power-on movies coudl live without it - // And the immediate fire is that Savestate movies are breaking - - /* - * natt: in light of more recent changes, the front end is no longer errantly loading saveram for new movies. so, as best as i - * can tell through snaking through the debugger, this is no longer needed. - * - if (!StartsFromSavestate) - { - Global.Emulator.ClearSaveRam(); - } - */ _mode = Moviemode.Record; if (Global.Config.EnableBackupMovies && _makeBackup && _log.Any()) { @@ -56,13 +42,6 @@ namespace BizHawk.Client.Common public void StartNewPlayback() { - // See StartNewRecording for details as to why this code is gone - /* - if (!StartsFromSavestate) - { - Global.Emulator.ClearSaveRam(); - }*/ - _mode = Moviemode.Play; } diff --git a/BizHawk.Emulation.Common/Interfaces/Base Implementations/NullEmulator.cs b/BizHawk.Emulation.Common/Interfaces/Base Implementations/NullEmulator.cs index 4732d63dfd..d9bf91fca5 100644 --- a/BizHawk.Emulation.Common/Interfaces/Base Implementations/NullEmulator.cs +++ b/BizHawk.Emulation.Common/Interfaces/Base Implementations/NullEmulator.cs @@ -68,7 +68,6 @@ namespace BizHawk.Emulation.Common public byte[] CloneSaveRam() { return null; } public void StoreSaveRam(byte[] data) { } - public void ClearSaveRam() { } public bool DeterministicEmulation { get { return true; } } public bool SaveRamModified { get; set; } public void SaveStateText(TextWriter writer) { } diff --git a/BizHawk.Emulation.Cores/Calculator/TI83.cs b/BizHawk.Emulation.Cores/Calculator/TI83.cs index 8f51b8bd0f..6db50f9f58 100644 --- a/BizHawk.Emulation.Cores/Calculator/TI83.cs +++ b/BizHawk.Emulation.Cores/Calculator/TI83.cs @@ -526,7 +526,7 @@ namespace BizHawk.Emulation.Cores.Calculators public byte[] CloneSaveRam() { return null; } public void StoreSaveRam(byte[] data) { } - public void ClearSaveRam() { } + public bool SaveRamModified { get { return false; } diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Savestate.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Savestate.cs index 56ff285325..28b7a694be 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Savestate.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Savestate.cs @@ -7,10 +7,6 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64 { sealed public partial class C64 : IEmulator { - public void ClearSaveRam() - { - } - public void LoadStateBinary(BinaryReader br) { SyncState(new Serializer(br)); diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs index e19d75aa3c..e206246bdc 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/2600/Atari2600.cs @@ -159,8 +159,6 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600 public void StoreSaveRam(byte[] data) { } - public void ClearSaveRam() { } - public void SaveStateText(TextWriter writer) { SyncState(Serializer.CreateTextWriter(writer)); diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.cs b/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.cs index 47c6095961..d085e1ef51 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/7800/Atari7800.cs @@ -81,11 +81,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari7800 { Buffer.BlockCopy(data, 0, hsram, 0, data.Length); } - public void ClearSaveRam() - { - for (int i = 0; i < hsram.Length; i++) - hsram[i] = 0; - } + public bool SaveRamModified { get diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/lynx/Lynx.cs b/BizHawk.Emulation.Cores/Consoles/Atari/lynx/Lynx.cs index 3697a2f6b8..e0cafa8338 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/lynx/Lynx.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/lynx/Lynx.cs @@ -304,12 +304,6 @@ namespace BizHawk.Emulation.Cores.Atari.Lynx Marshal.Copy(srcdata, 0, data, size); } - [FeatureNotImplemented] - public void ClearSaveRam() - { - throw new NotImplementedException(); - } - public bool SaveRamModified { get diff --git a/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.cs b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.cs index 278a3defd9..58ff024192 100644 --- a/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.cs +++ b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.cs @@ -172,7 +172,6 @@ namespace BizHawk.Emulation.Cores.ColecoVision public byte[] CloneSaveRam() { return null; } public void StoreSaveRam(byte[] data) { } - public void ClearSaveRam() { } public bool SaveRamModified { get; set; } public bool DeterministicEmulation { get { return true; } } diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs index 935ad0b988..e826f9469e 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.cs @@ -164,12 +164,6 @@ namespace BizHawk.Emulation.Cores.Intellivision } - [FeatureNotImplemented] - public void ClearSaveRam() - { - - } - public bool SaveRamModified { [FeatureNotImplemented] diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/Meteor.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/Meteor.cs index deb3f9f97e..56f1391913 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/Meteor.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/Meteor.cs @@ -132,13 +132,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA #endif } - public void ClearSaveRam() - { - if (disposed) - throw new ObjectDisposedException(this.GetType().ToString()); - LibMeteor.libmeteor_clearsaveram(); - } - public bool SaveRamModified { get diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.cs index 02e6bc5148..9d7fe274f6 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.cs @@ -154,12 +154,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA throw new InvalidOperationException("SaveRamLoad() failed!"); } - [FeatureNotImplemented] - public void ClearSaveRam() - { - throw new NotImplementedException(); - } - public bool SaveRamModified { get diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs index e9298fdbd3..15d6e439f1 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/Gambatte.cs @@ -477,23 +477,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy LibGambatte.gambatte_loadsavedata(GambatteState, data); } - /// - /// reset cart save ram, if any, to initial state - /// - public void ClearSaveRam() - { - int length = LibGambatte.gambatte_savesavedatalength(GambatteState); - if (length == 0) - return; - - byte[] clear = new byte[length]; - for (int i = 0; i < clear.Length; i++) - clear[i] = 0xff; // this exactly matches what gambatte core does - - StoreSaveRam(clear); - } - - public bool SaveRamModified { get diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs index 2af55c50fc..7a37c3af35 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/Gameboy/GambatteLink.cs @@ -274,12 +274,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy R.StoreSaveRam(rb); } - public void ClearSaveRam() - { - L.ClearSaveRam(); - R.ClearSaveRam(); - } - public bool SaveRamModified { get diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.cs index 6d76e6e2ca..429764e254 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.cs @@ -301,11 +301,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64 api.LoadSaveram(data); } - public void ClearSaveRam() - { - api.InitSaveram(); - } - public bool SaveRamModified { get { return true; } set { } } #region Savestates diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/FDS/FDS.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/FDS/FDS.cs index 8fde781cc6..8fea83ef46 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/FDS/FDS.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/FDS/FDS.cs @@ -222,17 +222,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES diskdrive.ApplyDiff(diskdiffs[(int)currentside]); } - public void ClearSaveRam() - { - // be careful with this; it can only really be done in frame 0 - //if (currentside != null) - // throw new Exception("FDS Saveram: Can't clear when a disk is active!"); - for (int i = 0; i < diskdiffs.Length; i++) - diskdiffs[i] = null; - if (currentside != null) - InsertSide((int)currentside); - } - public override byte[] SaveRam { get { throw new Exception("FDS Saveram: Must access with method api!"); } } diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs index 39a7825820..8d900a85ef 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.cs @@ -348,20 +348,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES Array.Copy(data, board.SaveRam, data.Length); } - public void ClearSaveRam() - { - if (board is FDS) - { - (board as FDS).ClearSaveRam(); - return; - } - - if (board == null || board.SaveRam == null) - return; - for (int i = 0; i < board.SaveRam.Length; i++) - board.SaveRam[i] = 0; - } - public bool SaveRamModified { get diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs index f82dece850..b5728dfb25 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs @@ -234,11 +234,6 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES LibQuickNES.ThrowStringError(LibQuickNES.qn_battery_ram_load(Context, data, data.Length)); } - public void ClearSaveRam() - { - LibQuickNES.ThrowStringError(LibQuickNES.qn_battery_ram_clear(Context)); - } - public bool SaveRamModified { get diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs index 3f5976c6f6..d2a8a7222c 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs @@ -745,12 +745,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES Marshal.Copy(data, 0, (IntPtr)buf, size); } - public void ClearSaveRam() - { - byte[] cleardata = new byte[(int)api.QUERY_get_memory_size(LibsnesApi.SNES_MEMORY.CARTRIDGE_RAM)]; - StoreSaveRam(cleardata); - } - public void ResetCounters() { timeFrameCounter = 0; diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES9X/Snes9x.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES9X/Snes9x.cs index 6007d248e6..1ca3f03598 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES9X/Snes9x.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES9X/Snes9x.cs @@ -63,19 +63,17 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES9X #region saveram + [FeatureNotImplemented] public byte[] CloneSaveRam() { return new byte[0]; } + [FeatureNotImplemented] public void StoreSaveRam(byte[] data) { } - public void ClearSaveRam() - { - } - public bool SaveRamModified { get diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs index f365d534dd..8e582991c3 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs @@ -366,16 +366,13 @@ namespace BizHawk.Emulation.Cores.PCEngine else return null; } + public void StoreSaveRam(byte[] data) { if (BRAM != null) Array.Copy(data, BRAM, data.Length); } - public void ClearSaveRam() - { - if (BRAM != null) - BRAM = new byte[BRAM.Length]; - } + public bool SaveRamModified { get; set; } public bool BinarySaveStatesPreferred { get { return false; } } diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/Genesis/Cart/SaveRAM.cs b/BizHawk.Emulation.Cores/Consoles/Sega/Genesis/Cart/SaveRAM.cs index c0ba470fed..1314524ac3 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/Genesis/Cart/SaveRAM.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/Genesis/Cart/SaveRAM.cs @@ -43,7 +43,6 @@ namespace BizHawk.Emulation.Cores.Sega.Genesis public byte[] CloneSaveRam() { return (byte[])SaveRAM.Clone(); } public void StoreSaveRam(byte[] data) { Array.Copy(data, SaveRAM, data.Length); } - public void ClearSaveRam() { SaveRAM = new byte[SaveRAM.Length]; } public bool SaveRamModified { get; set; } } diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs index c0ff46c0d5..25702baf1c 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.cs @@ -56,11 +56,7 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem if (SaveRAM != null) Array.Copy(data, SaveRAM, data.Length); } - public void ClearSaveRam() - { - if (SaveRAM != null) - SaveRAM = new byte[SaveRAM.Length]; - } + public bool SaveRamModified { get; set; } // Machine resources diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs index d4d47a9b13..bfa2fca654 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs @@ -345,18 +345,6 @@ namespace BizHawk.Emulation.Cores.Sega.Saturn } } - public void ClearSaveRam() - { - if (Disposed) - { - throw new Exception("It's a bit late for that"); - } - else - { - LibYabause.libyabause_clearsaveram(); - } - } - public bool SaveRamModified { get diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs index a451f03c90..edd9514a8c 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/gpgx/GPGX.cs @@ -480,18 +480,6 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx } } - public void ClearSaveRam() - { - if (disposed) - { - throw new ObjectDisposedException(typeof(GPGX).ToString()); - } - else - { - LibGPGX.gpgx_clear_sram(); - } - } - public bool SaveRamModified { get diff --git a/BizHawk.Emulation.Cores/Consoles/Sony/PSP/PSP.cs b/BizHawk.Emulation.Cores/Consoles/Sony/PSP/PSP.cs index 66e7282bf6..bc538d7d8e 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sony/PSP/PSP.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sony/PSP/PSP.cs @@ -155,11 +155,6 @@ namespace BizHawk.Emulation.Cores.Sony.PSP { } - [FeatureNotImplemented] - public void ClearSaveRam() - { - } - public bool SaveRamModified { [FeatureNotImplemented] diff --git a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs index 478fb4d915..85c18993c3 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sony/PSX/Octoshock.cs @@ -288,9 +288,6 @@ namespace BizHawk.Emulation.Cores.Sony.PSX [FeatureNotImplemented] public void StoreSaveRam(byte[] data) { } - [FeatureNotImplemented] - public void ClearSaveRam() { } - [FeatureNotImplemented] public bool DeterministicEmulation { get { return true; } } diff --git a/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs b/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs index d5415ad341..ee61a08683 100644 --- a/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs +++ b/BizHawk.Emulation.Cores/Consoles/WonderSwan/WonderSwan.cs @@ -108,6 +108,7 @@ namespace BizHawk.Emulation.Cores.WonderSwan if (!BizSwan.bizswan_load(Core, file, file.Length, ref ss, ref rotate)) throw new InvalidOperationException("bizswan_load() returned FALSE!"); + // adelikat: TODO: ClearSaveRam() doesn't exist anymore, do we still need this? // for future uses of ClearSaveRam(), it's important that we save this _DONTTOUCHME = ss; @@ -200,12 +201,6 @@ namespace BizHawk.Emulation.Cores.WonderSwan throw new InvalidOperationException("bizswan_saveramload() returned false!"); } - public void ClearSaveRam() - { - BizSwan.bizswan_saveramclearhacky(Core, ref _DONTTOUCHME); - //throw new InvalidOperationException("A new core starts with a clear saveram. Instantiate a new core if you want this."); - } - public bool SaveRamModified { get { return BizSwan.bizswan_saveramsize(Core) > 0; } diff --git a/BizHawk.Emulation.Cores/LibRetroEmulator.cs b/BizHawk.Emulation.Cores/LibRetroEmulator.cs index 1968a95089..0633f34986 100644 --- a/BizHawk.Emulation.Cores/LibRetroEmulator.cs +++ b/BizHawk.Emulation.Cores/LibRetroEmulator.cs @@ -271,22 +271,9 @@ namespace BizHawk.Emulation.Cores Marshal.Copy(data, 0, dst, size); } - public void ClearSaveRam() - { - // this is sort of wrong, because we should be clearing saveram to whatever the default state is - // which may or may not be 0-fill - int size = (int)retro.retro_get_memory_size(LibRetro.RETRO_MEMORY.SAVE_RAM); - IntPtr dst = retro.retro_get_memory_data(LibRetro.RETRO_MEMORY.SAVE_RAM); - if (dst == IntPtr.Zero) - throw new Exception("retro_get_memory_data(RETRO_MEMORY_SAVE_RAM) returned NULL"); - - byte* p = (byte*)dst; - for (int i = 0; i < size; i++) - p[i] = 0; - } - public bool SaveRamModified { + [FeatureNotImplemented] get { return true; } [FeatureNotImplemented]