mirror of
https://github.com/holub/mame
synced 2025-10-06 17:08:28 +03:00
apple2gs: fixed save state issues with new driver (nw)
This commit is contained in:
parent
fe6851a2d5
commit
4cd311a25d
@ -104,6 +104,15 @@ void a2_video_device::device_start()
|
|||||||
save_item(NAME(m_dhires));
|
save_item(NAME(m_dhires));
|
||||||
save_item(NAME(m_80col));
|
save_item(NAME(m_80col));
|
||||||
save_item(NAME(m_altcharset));
|
save_item(NAME(m_altcharset));
|
||||||
|
save_item(NAME(m_an2));
|
||||||
|
save_item(NAME(m_80store));
|
||||||
|
save_item(NAME(m_monohgr));
|
||||||
|
save_item(NAME(m_GSfg));
|
||||||
|
save_item(NAME(m_GSbg));
|
||||||
|
save_item(NAME(m_GSborder));
|
||||||
|
save_item(NAME(m_newvideo));
|
||||||
|
save_item(NAME(m_monochrome));
|
||||||
|
save_item(NAME(m_shr_palette));
|
||||||
}
|
}
|
||||||
|
|
||||||
void a2_video_device::device_reset()
|
void a2_video_device::device_reset()
|
||||||
@ -117,6 +126,10 @@ void a2_video_device::device_reset()
|
|||||||
m_flash = false;
|
m_flash = false;
|
||||||
m_mix = false;
|
m_mix = false;
|
||||||
m_sysconfig = 0;
|
m_sysconfig = 0;
|
||||||
|
m_an2 = false;
|
||||||
|
m_80store = false;
|
||||||
|
m_monohgr = false;
|
||||||
|
m_newvideo = 0x01;
|
||||||
}
|
}
|
||||||
|
|
||||||
void a2_video_device::plot_text_character(bitmap_ind16 &bitmap, int xpos, int ypos, int xscale, uint32_t code,
|
void a2_video_device::plot_text_character(bitmap_ind16 &bitmap, int xpos, int ypos, int xscale, uint32_t code,
|
||||||
|
Loading…
Reference in New Issue
Block a user