summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/tc0080vco.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/tc0080vco.cpp')
-rw-r--r--src/mame/video/tc0080vco.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/video/tc0080vco.cpp b/src/mame/video/tc0080vco.cpp
index f90984319bc..fc870de2a23 100644
--- a/src/mame/video/tc0080vco.cpp
+++ b/src/mame/video/tc0080vco.cpp
@@ -178,7 +178,6 @@ void tc0080vco_device::device_start()
m_gfxdecode->set_gfx(m_txnum, std::make_unique<gfx_element>(&m_gfxdecode->palette(), charlayout, (uint8_t *)m_char_ram, 0, 1, 512));
save_pointer(NAME(m_ram), TC0080VCO_RAM_SIZE / 2);
- machine().save().register_postload(save_prepost_delegate(FUNC(tc0080vco_device::postload), this));
}
@@ -680,8 +679,11 @@ READ_LINE_MEMBER( tc0080vco_device::flipscreen_r )
return m_flipscreen;
}
+//-------------------------------------------------
+// device_post_load - device-specific postload
+//-------------------------------------------------
-void tc0080vco_device::postload()
+void tc0080vco_device::device_post_load()
{
m_flipscreen = m_scroll_ram[0] & 0x0c00;