summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/rs232/ser_mouse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/rs232/ser_mouse.cpp')
-rw-r--r--src/devices/bus/rs232/ser_mouse.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/rs232/ser_mouse.cpp b/src/devices/bus/rs232/ser_mouse.cpp
index c7c316231a3..508e4072741 100644
--- a/src/devices/bus/rs232/ser_mouse.cpp
+++ b/src/devices/bus/rs232/ser_mouse.cpp
@@ -29,14 +29,14 @@ serial_mouse_device::serial_mouse_device(const machine_config &mconfig, device_t
{
}
-const device_type MSFT_SERIAL_MOUSE = &device_creator<microsoft_mouse_device>;
+const device_type MSFT_SERIAL_MOUSE = device_creator<microsoft_mouse_device>;
microsoft_mouse_device::microsoft_mouse_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: serial_mouse_device(mconfig, MSFT_SERIAL_MOUSE, "Microsoft Serial Mouse", tag, owner, clock, "microsoft_mouse", __FILE__)
{
}
-const device_type MSYSTEM_SERIAL_MOUSE = &device_creator<mouse_systems_mouse_device>;
+const device_type MSYSTEM_SERIAL_MOUSE = device_creator<mouse_systems_mouse_device>;
mouse_systems_mouse_device::mouse_systems_mouse_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: serial_mouse_device(mconfig, MSYSTEM_SERIAL_MOUSE, "Mouse Systems Serial Mouse", tag, owner, clock, "mouse_systems_mouse", __FILE__)