diff options
author | 2017-07-10 19:34:33 +1000 | |
---|---|---|
committer | 2017-07-10 19:35:07 +1000 | |
commit | 536b2153d995430def817091867b3cfde71e688a (patch) | |
tree | ebfaa23525e5a041a3160ed284944efc3b209ab4 /src/devices/video/315_5124.cpp | |
parent | a857db7582d91ede98433fb63b357b917ef92f73 (diff) |
make device_memory_interface slightly less of a special case, use a typedef to avoid nested templates everywhere (nw)
Diffstat (limited to 'src/devices/video/315_5124.cpp')
-rw-r--r-- | src/devices/video/315_5124.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/315_5124.cpp b/src/devices/video/315_5124.cpp index 2a1f684ad88..3603e018953 100644 --- a/src/devices/video/315_5124.cpp +++ b/src/devices/video/315_5124.cpp @@ -200,9 +200,9 @@ sega315_5378_device::sega315_5378_device(const machine_config &mconfig, const ch } -std::vector<std::pair<int, const address_space_config *>> sega315_5124_device::memory_space_config() const +device_memory_interface::space_config_vector sega315_5124_device::memory_space_config() const { - return std::vector<std::pair<int, const address_space_config *>> { + return space_config_vector { std::make_pair(0, &m_space_config) }; } |