summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/bitmap_printer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/bitmap_printer.cpp')
-rw-r--r--src/devices/machine/bitmap_printer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/bitmap_printer.cpp b/src/devices/machine/bitmap_printer.cpp
index ca552a14694..83296b5474b 100644
--- a/src/devices/machine/bitmap_printer.cpp
+++ b/src/devices/machine/bitmap_printer.cpp
@@ -76,7 +76,7 @@ void bitmap_printer_device::device_add_mconfig(machine_config &config)
// LIVE DEVICE
//**************************************************************************
-bitmap_printer_device::bitmap_printer_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock) :
+bitmap_printer_device::bitmap_printer_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, const XTAL &clock) :
device_t(mconfig, type, tag, owner, clock),
m_cr_direction(1),
m_xpos(0),
@@ -108,13 +108,13 @@ bitmap_printer_device::bitmap_printer_device(const machine_config &mconfig, devi
{
}
-bitmap_printer_device::bitmap_printer_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
+bitmap_printer_device::bitmap_printer_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock) :
bitmap_printer_device(mconfig, BITMAP_PRINTER, tag, owner, clock)
{
}
bitmap_printer_device::bitmap_printer_device(const machine_config &mconfig, const char *tag, device_t *owner, int paper_width, int paper_height, int hdpi, int vdpi) :
- bitmap_printer_device(mconfig, tag, owner, u32(0))
+ bitmap_printer_device(mconfig, tag, owner)
{
m_paper_width = paper_width;
m_paper_height = paper_height;