From b7b114c525bd0b66cfcd78ca89b2161a746a8858 Mon Sep 17 00:00:00 2001 From: AJR Date: Mon, 2 Oct 2023 22:05:12 -0400 Subject: bus/a800: Fix class hierarchy for "a5200_2chips" ROM type --- src/devices/bus/a800/rom.cpp | 2 +- src/devices/bus/a800/rom.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/bus/a800/rom.cpp b/src/devices/bus/a800/rom.cpp index 532a5cf609e..c8a3131f206 100644 --- a/src/devices/bus/a800/rom.cpp +++ b/src/devices/bus/a800/rom.cpp @@ -195,7 +195,7 @@ void a5200_rom_device::device_start() -------------------------------------------------*/ a5200_rom_2chips_device::a5200_rom_2chips_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) - : a800_rom_device(mconfig, A5200_ROM_2CHIPS, tag, owner, clock) + : a5200_rom_device(mconfig, A5200_ROM_2CHIPS, tag, owner, clock) { } diff --git a/src/devices/bus/a800/rom.h b/src/devices/bus/a800/rom.h index 320dc5bb2f5..8d6b551519a 100644 --- a/src/devices/bus/a800/rom.h +++ b/src/devices/bus/a800/rom.h @@ -83,7 +83,7 @@ protected: virtual void device_start() override; }; -class a5200_rom_2chips_device : public a800_rom_device +class a5200_rom_2chips_device : public a5200_rom_device { public: a5200_rom_2chips_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); -- cgit v1.2.3