summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2016-07-02 09:32:02 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2016-07-02 09:32:02 +0200
commitd8968d4c87c6c8b2ce6d3d9b23242d92b91b2133 (patch)
treebfac80563b58eb72b6b18a6d14be2ecfaed5f8e6
parent11751e2d3cba749bf25465fd4f0430babf436939 (diff)
bus/centronics/comxpl80.cpp: fixed missing required object (nw)
-rw-r--r--src/devices/bus/centronics/comxpl80.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/centronics/comxpl80.cpp b/src/devices/bus/centronics/comxpl80.cpp
index 4c7bc354d42..be2fc18e39d 100644
--- a/src/devices/bus/centronics/comxpl80.cpp
+++ b/src/devices/bus/centronics/comxpl80.cpp
@@ -161,7 +161,7 @@ ioport_constructor comx_pl80_device::device_input_ports() const
comx_pl80_device::comx_pl80_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, COMX_PL80, "COMX PL-80", tag, owner, clock, "comx_pl80", __FILE__),
device_centronics_peripheral_interface(mconfig, *this),
- m_plotter(*this, "PLOTTER"),
+ m_plotter(*this, "gfx1"),
m_font(*this, "FONT"),
m_sw(*this, "SW"), m_font_addr(0), m_x_motor_phase(0), m_y_motor_phase(0), m_z_motor_phase(0), m_plotter_data(0), m_plotter_ack(0), m_plotter_online(0), m_data(0)
{