summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/vcs_ctrl/lightpen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/vcs_ctrl/lightpen.cpp')
-rw-r--r--src/devices/bus/vcs_ctrl/lightpen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/vcs_ctrl/lightpen.cpp b/src/devices/bus/vcs_ctrl/lightpen.cpp
index 446e57cd6a0..2a1ca665412 100644
--- a/src/devices/bus/vcs_ctrl/lightpen.cpp
+++ b/src/devices/bus/vcs_ctrl/lightpen.cpp
@@ -56,7 +56,7 @@ ioport_constructor vcs_lightpen_device::device_input_ports() const
// vcs_lightpen_device - constructor
//-------------------------------------------------
-vcs_lightpen_device::vcs_lightpen_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+vcs_lightpen_device::vcs_lightpen_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, VCS_LIGHTPEN, "Atari / CBM Light Pen", tag, owner, clock, "vcs_lightpen", __FILE__),
device_vcs_control_port_interface(mconfig, *this),
m_joy(*this, "JOY"),
@@ -79,7 +79,7 @@ void vcs_lightpen_device::device_start()
// vcs_joy_r - lightpen read
//-------------------------------------------------
-UINT8 vcs_lightpen_device::vcs_joy_r()
+uint8_t vcs_lightpen_device::vcs_joy_r()
{
return m_joy->read();
}