diff options
author | 2015-03-30 18:32:30 +0100 | |
---|---|---|
committer | 2015-03-30 18:32:30 +0100 | |
commit | c6aeb4df9636b749a78a02eae6c460039f22917c (patch) | |
tree | 219d4a82b8008c8536f1f6d0875452b19f82064a /src | |
parent | ad76983e54a1a30fb6eee6c6b33cf0810f840fdb (diff) | |
parent | 1ce70aee163b0f7f11f955fd2867fad48e7f4af7 (diff) |
Merge branch 'master' of https://github.com/mamedev/mame
Diffstat (limited to 'src')
-rw-r--r-- | src/mame/audio/dcs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mame/audio/dcs.c b/src/mame/audio/dcs.c index 8b51a0c9380..591a17647eb 100644 --- a/src/mame/audio/dcs.c +++ b/src/mame/audio/dcs.c @@ -927,6 +927,7 @@ void dcs2_audio_device::device_start() if (m_dram_in_mb != 0) { m_sounddata = auto_alloc_array(machine(), UINT16, m_dram_in_mb << (20-1)); + save_pointer(NAME(m_sounddata), m_dram_in_mb << (20-1)); m_sounddata_words = (m_dram_in_mb << 20) / 2; } else |