summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/x2212.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/x2212.cpp')
-rw-r--r--src/devices/machine/x2212.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/x2212.cpp b/src/devices/machine/x2212.cpp
index a13edde1824..04a9ee5a1c9 100644
--- a/src/devices/machine/x2212.cpp
+++ b/src/devices/machine/x2212.cpp
@@ -86,9 +86,9 @@ void x2212_device::device_start()
// any address spaces owned by this device
//-------------------------------------------------
-std::vector<std::pair<int, const address_space_config *>> x2212_device::memory_space_config() const
+device_memory_interface::space_config_vector x2212_device::memory_space_config() const
{
- return std::vector<std::pair<int, const address_space_config *>> {
+ return space_config_vector {
std::make_pair(0, &m_sram_space_config),
std::make_pair(1, &m_e2prom_space_config)
};