diff options
Diffstat (limited to 'src/mess/machine/vic20user.c')
-rw-r--r-- | src/mess/machine/vic20user.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/machine/vic20user.c b/src/mess/machine/vic20user.c index 26c395a1c7f..c0af6432f4d 100644 --- a/src/mess/machine/vic20user.c +++ b/src/mess/machine/vic20user.c @@ -53,7 +53,7 @@ device_vic20_user_port_interface::~device_vic20_user_port_interface() //------------------------------------------------- vic20_user_port_device::vic20_user_port_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : - device_t(mconfig, VIC20_USER_PORT, "VIC-20 user port", tag, owner, clock), + device_t(mconfig, VIC20_USER_PORT, "VIC-20 user port", tag, owner, clock), device_slot_interface(mconfig, *this) { } @@ -86,9 +86,9 @@ void vic20_user_port_device::device_config_complete() // or initialize to defaults if none provided else { - memset(&m_out_cb1_cb, 0, sizeof(m_out_cb1_cb)); - memset(&m_out_cb2_cb, 0, sizeof(m_out_cb2_cb)); - memset(&m_out_reset_cb, 0, sizeof(m_out_reset_cb)); + memset(&m_out_cb1_cb, 0, sizeof(m_out_cb1_cb)); + memset(&m_out_cb2_cb, 0, sizeof(m_out_cb2_cb)); + memset(&m_out_reset_cb, 0, sizeof(m_out_reset_cb)); } } |