summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/upd7752.h
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2017-07-01 12:11:28 +0200
committer Olivier Galibert <galibert@pobox.com>2017-07-03 08:03:57 +0200
commitcbbbd07484c736eae2069b294ec666f231e64bff (patch)
treeb94a690f0ab10635eb6d11837425744208c7e8a4 /src/devices/sound/upd7752.h
parentcb1930f6e6a6b460577f01207888eab402469e9f (diff)
dimemory: Lift the cap on the number of address spaces per device [O. Galibert]
Diffstat (limited to 'src/devices/sound/upd7752.h')
-rw-r--r--src/devices/sound/upd7752.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/upd7752.h b/src/devices/sound/upd7752.h
index af3988bd46c..f25dc53a764 100644
--- a/src/devices/sound/upd7752.h
+++ b/src/devices/sound/upd7752.h
@@ -36,7 +36,7 @@ protected:
virtual void device_reset() override;
virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) override;
- virtual const address_space_config *memory_space_config(address_spacenum spacenum) const override;
+ virtual std::vector<std::pair<int, const address_space_config *>> memory_space_config() const override;
private:
sound_stream *m_stream;