diff options
Diffstat (limited to 'src/emu')
-rw-r--r-- | src/emu/sound/st0016.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/emu/sound/st0016.c b/src/emu/sound/st0016.c index 4c75f3f7b02..d62332496cb 100644 --- a/src/emu/sound/st0016.c +++ b/src/emu/sound/st0016.c @@ -45,6 +45,11 @@ void st0016_device::device_start() { m_stream = stream_alloc(0, 2, 44100); m_ram_read_cb.resolve_safe(0); + + save_item(NAME(m_vpos)); + save_item(NAME(m_frac)); + save_item(NAME(m_lponce)); + save_item(NAME(m_regs)); } |