GBHawk: add in missing variable to state

This commit is contained in:
alyosha-tas 2020-09-16 20:54:51 -04:00
parent 714fd0fddc
commit 2f01ac2212
2 changed files with 1 additions and 2 deletions

View File

@ -1653,8 +1653,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
ser.Sync(nameof(LY_read), ref LY_read);
ser.Sync(nameof(LYC_cd), ref LYC_cd);
ser.Sync(nameof(hbl_countdown), ref hbl_countdown);
base.SyncState(ser);
}

View File

@ -247,6 +247,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
ser.Sync(nameof(latch_new_data), ref latch_new_data);
ser.Sync(nameof(render_counter), ref render_counter);
ser.Sync(nameof(render_offset), ref render_offset);
ser.Sync(nameof(scroll_offset), ref scroll_offset);
ser.Sync(nameof(pixel_counter), ref pixel_counter);
ser.Sync(nameof(pixel), ref pixel);
ser.Sync(nameof(sprite_data), ref sprite_data, false);