Vectrex: Add frame buffer to state an set to released

This commit is contained in:
alyosha-tas 2019-07-12 18:15:25 -04:00
parent 90436811b9
commit 66cf00a917
2 changed files with 5 additions and 5 deletions

View File

@ -47,10 +47,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Vectrex
ms.Close();
core = ms.ToArray();
}
else
{
_framebuffer = new int[VirtualWidth * VirtualHeight];
}
cpu.SyncState(ser);
mapper.SyncState(ser);
ppu.SyncState(ser);
@ -113,6 +110,9 @@ namespace BizHawk.Emulation.Cores.Consoles.Vectrex
ser.Sync(nameof(joy2_LR), ref joy2_LR);
ser.Sync(nameof(joy2_UD), ref joy2_UD);
ser.Sync(nameof(_framebuffer), ref _framebuffer, false);
ser.Sync(nameof(_vidbuffer), ref _vidbuffer, false);
ser.EndSection();
}
}

View File

@ -10,7 +10,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Vectrex
"VectrexHawk",
"",
isPorted: false,
isReleased: false)]
isReleased: true)]
[ServiceNotApplicable(typeof(IDriveLight))]
public partial class VectrexHawk : IEmulator, ISaveRam, IDebuggable, IStatable, IInputPollable, IRegionable,
ISettable<VectrexHawk.VectrexSettings, VectrexHawk.VectrexSyncSettings>