summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/linflash.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/linflash.cpp')
-rw-r--r--src/devices/machine/linflash.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/linflash.cpp b/src/devices/machine/linflash.cpp
index 3c99d9297dc..a520829e57b 100644
--- a/src/devices/machine/linflash.cpp
+++ b/src/devices/machine/linflash.cpp
@@ -21,9 +21,9 @@ void linear_flash_pccard_device::device_start()
m_space = &space(0);
}
-std::vector<std::pair<int, const address_space_config *>> linear_flash_pccard_device::memory_space_config() const
+device_memory_interface::space_config_vector linear_flash_pccard_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)
};
}