diff options
Diffstat (limited to 'src/devices/sound/s_dsp.cpp')
-rw-r--r-- | src/devices/sound/s_dsp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/s_dsp.cpp b/src/devices/sound/s_dsp.cpp index 976fb33f5a2..487b77bff2f 100644 --- a/src/devices/sound/s_dsp.cpp +++ b/src/devices/sound/s_dsp.cpp @@ -156,9 +156,9 @@ s_dsp_device::s_dsp_device(const machine_config &mconfig, const char *tag, devic void s_dsp_device::device_start() { - m_data = &space(0); // Find our direct access - m_cache = m_data->cache<0, 0, ENDIANNESS_LITTLE>(); + space().cache(m_cache); + space().specific(m_data); m_channel = machine().sound().stream_alloc(*this, 0, 2, clock() / 64); |