summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/odyssey2/rom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/odyssey2/rom.cpp')
-rw-r--r--src/devices/bus/odyssey2/rom.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/odyssey2/rom.cpp b/src/devices/bus/odyssey2/rom.cpp
index 649e5992f65..dd2a3739bea 100644
--- a/src/devices/bus/odyssey2/rom.cpp
+++ b/src/devices/bus/odyssey2/rom.cpp
@@ -24,14 +24,14 @@ const device_type O2_ROM_16K = &device_creator<o2_rom16_device>;
o2_rom_device::o2_rom_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source)
: device_t(mconfig, type, name, tag, owner, clock, shortname, source),
- device_o2_cart_interface(mconfig, *this),
- m_bank_base(0)
+ device_o2_cart_interface(mconfig, *this),
+ m_bank_base(0)
{
}
o2_rom_device::o2_rom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, O2_ROM_STD, "Odyssey 2 Standard Carts", tag, owner, clock, "o2_rom", __FILE__),
- device_o2_cart_interface( mconfig, *this ),
+ device_o2_cart_interface( mconfig, *this ),
m_bank_base(0)
{
}