diff options
author | 2015-06-04 22:31:47 +0200 | |
---|---|---|
committer | 2015-06-04 22:31:47 +0200 | |
commit | 0a794fd6ced96ea40653167af5877cc28c8c0db3 (patch) | |
tree | 457dadfe1a38e56aadbfa4746500eb2fd308e0db /src/emu/sound | |
parent | 786e826c38cf302024c981b797c5e6b9c68f809c (diff) |
srmp5.c: added save state support (nw)
Diffstat (limited to 'src/emu/sound')
-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)); } |