[JsonIgnore] an unneeded part of Apple II video core

This commit is contained in:
goyuken 2015-05-19 23:49:19 +00:00
parent 46c374f8a3
commit ef20ef1991
2 changed files with 3 additions and 0 deletions

View File

@ -28,6 +28,7 @@ namespace Jellyfish.Virtu
[System.Runtime.Serialization.OnDeserialized]
public void OnDeserialized(System.Runtime.Serialization.StreamingContext context)
{
// the videoservice forgets all of its information on loadstate
DirtyScreen();
}
@ -1104,6 +1105,8 @@ namespace Jellyfish.Virtu
private ushort[] _charSet;
private int[] _colorPalette = new int[ColorPaletteCount];
[Newtonsoft.Json.JsonIgnore] // everything is automatically dirtied on load, so no need to save
private bool[] _isCellDirty = new bool[Height * CellColumns + 1]; // includes sentinel
}
}

Binary file not shown.