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/huc6272.h | |
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/huc6272.h')
-rw-r--r-- | src/devices/video/huc6272.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/huc6272.h b/src/devices/video/huc6272.h index 638aebdf0d6..bec5b0eba20 100644 --- a/src/devices/video/huc6272.h +++ b/src/devices/video/huc6272.h @@ -56,7 +56,7 @@ protected: virtual void device_start() override; virtual void device_reset() override; virtual void device_add_mconfig(machine_config &config) override; - virtual std::vector<std::pair<int, const address_space_config *>> memory_space_config() const override; + virtual space_config_vector memory_space_config() const override; private: const char *m_huc6271_tag; |