Small typo fix. Doesn't fix covox_stereo regression. (nw)

This commit is contained in:
Ivan Vangelista 2014-04-19 06:15:09 +00:00
parent 09657d0189
commit 0f3caa74a8

View File

@ -62,7 +62,7 @@ void centronics_device::device_start()
m_autofd_handler.resolve_safe();
m_fault_handler.resolve_safe();
m_init_handler.resolve_safe();
m_select_handler.resolve_safe();
m_select_in_handler.resolve_safe();
// pull up
m_strobe_handler(1);
@ -81,7 +81,7 @@ void centronics_device::device_start()
m_autofd_handler(1);
m_fault_handler(1);
m_init_handler(1);
m_select_handler(1);
m_select_in_handler(1);
}
WRITE_LINE_MEMBER( centronics_device::write_strobe ) { if (m_dev) m_dev->input_strobe(state); }