summaryrefslogtreecommitdiffstats
path: root/src/devices/imagedev/printer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/imagedev/printer.cpp')
-rw-r--r--src/devices/imagedev/printer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/imagedev/printer.cpp b/src/devices/imagedev/printer.cpp
index 25c3b0f7330..495ac5775d3 100644
--- a/src/devices/imagedev/printer.cpp
+++ b/src/devices/imagedev/printer.cpp
@@ -19,7 +19,7 @@ const device_type PRINTER = &device_creator<printer_image_device>;
// printer_image_device - constructor
//-------------------------------------------------
-printer_image_device::printer_image_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
+printer_image_device::printer_image_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, PRINTER, "Printer", tag, owner, clock, "printer_image", __FILE__),
device_image_interface(mconfig, *this),
m_online_cb(*this)
@@ -68,7 +68,7 @@ int printer_image_device::is_ready()
printer_output - outputs data to a printer
-------------------------------------------------*/
-void printer_image_device::output(UINT8 data)
+void printer_image_device::output(uint8_t data)
{
if (exists())
{