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 dac96ec563a..7a073e7fb19 100644
--- a/src/devices/bus/odyssey2/rom.cpp
+++ b/src/devices/bus/odyssey2/rom.cpp
@@ -17,9 +17,9 @@
// o2_rom_device - constructor
//-------------------------------------------------
-const device_type O2_ROM_STD = &device_creator<o2_rom_device>;
-const device_type O2_ROM_12K = &device_creator<o2_rom12_device>;
-const device_type O2_ROM_16K = &device_creator<o2_rom16_device>;
+const device_type O2_ROM_STD = device_creator<o2_rom_device>;
+const device_type O2_ROM_12K = device_creator<o2_rom12_device>;
+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_t clock, const char *shortname, const char *source)