summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/apexc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/apexc.cpp')
-rw-r--r--src/mame/drivers/apexc.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/drivers/apexc.cpp b/src/mame/drivers/apexc.cpp
index 4e2337ad84d..434ff5f9c14 100644
--- a/src/mame/drivers/apexc.cpp
+++ b/src/mame/drivers/apexc.cpp
@@ -10,6 +10,7 @@
#include "emu.h"
#include "cpu/apexc/apexc.h"
+#include "screen.h"
class apexc_state : public driver_device
@@ -96,7 +97,7 @@ private:
int m_writable;
};
-const device_type APEXC_CYLINDER = &device_creator<apexc_cylinder_image_device>;
+const device_type APEXC_CYLINDER = device_creator<apexc_cylinder_image_device>;
apexc_cylinder_image_device::apexc_cylinder_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, APEXC_CYLINDER, "APEXC Cylinder", tag, owner, clock, "apexc_cylinder_image", __FILE__),
@@ -218,7 +219,7 @@ protected:
virtual void device_start() override { }
};
-const device_type APEXC_TAPE_PUNCHER = &device_creator<apexc_tape_puncher_image_device>;
+const device_type APEXC_TAPE_PUNCHER = device_creator<apexc_tape_puncher_image_device>;
apexc_tape_puncher_image_device::apexc_tape_puncher_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, APEXC_TAPE_PUNCHER, "APEXC Tape Puncher", tag, owner, clock, "apexc_tape_puncher_image", __FILE__),
@@ -250,7 +251,7 @@ protected:
virtual void device_start() override { }
};
-const device_type APEXC_TAPE_READER = &device_creator<apexc_tape_reader_image_device>;
+const device_type APEXC_TAPE_READER = device_creator<apexc_tape_reader_image_device>;
apexc_tape_reader_image_device::apexc_tape_reader_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, APEXC_TAPE_READER, "APEXC Tape Reader", tag, owner, clock, "apexc_tape_reader_image", __FILE__),