Delete Atari7800.ISaveRam.cs
This commit is contained in:
parent
588d60343a
commit
1c989d0432
|
@ -1,22 +0,0 @@
|
||||||
using System;
|
|
||||||
using BizHawk.Emulation.Common;
|
|
||||||
using EMU7800.Core;
|
|
||||||
|
|
||||||
namespace BizHawk.Emulation.Cores.Atari.Atari7800
|
|
||||||
{
|
|
||||||
public partial class Atari7800 : ISaveRam
|
|
||||||
{
|
|
||||||
public byte[] CloneSaveRam()
|
|
||||||
{
|
|
||||||
return (byte[])_hsram.Clone();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void StoreSaveRam(byte[] data)
|
|
||||||
{
|
|
||||||
Buffer.BlockCopy(data, 0, _hsram, 0, data.Length);
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool SaveRamModified => _gameInfo.MachineType == MachineType.A7800PAL
|
|
||||||
|| _gameInfo.MachineType == MachineType.A7800NTSC;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue