Fix NRE when flushing SaveRAM in GambatteLink for some roms
fixes d788e603f
not clear on the reproduction steps, but it will of course involve a rom
which triggers the "no SaveRAM, return null" in Gambatte
This commit is contained in:
parent
a03050dcc5
commit
64db1febbb
|
@ -38,7 +38,7 @@ namespace BizHawk.Emulation.Common
|
|||
int len = 0;
|
||||
for (int i = 0; i < _numCores; i++)
|
||||
{
|
||||
linkedBuffers.Add(_linkedCores[i].AsSaveRam().CloneSaveRam()!);
|
||||
linkedBuffers.Add(_linkedCores[i].AsSaveRam().CloneSaveRam() ?? Array.Empty<byte>());
|
||||
len += linkedBuffers[i].Length;
|
||||
}
|
||||
byte[] ret = new byte[len];
|
||||
|
@ -56,7 +56,9 @@ namespace BizHawk.Emulation.Common
|
|||
int pos = 0;
|
||||
for (int i = 0; i < _numCores; i++)
|
||||
{
|
||||
var b = new byte[_linkedCores[i].AsSaveRam().CloneSaveRam()!.Length];
|
||||
var toCopy = _linkedCores[i].AsSaveRam().CloneSaveRam(); // wait CloneSaveRam is already a copy, why are we copying it again
|
||||
if (toCopy is null) continue;
|
||||
var b = new byte[toCopy.Length];
|
||||
Buffer.BlockCopy(data, pos, b, 0, b.Length);
|
||||
pos += b.Length;
|
||||
_linkedCores[i].AsSaveRam().StoreSaveRam(b);
|
||||
|
|
Loading…
Reference in New Issue