diff --git a/src/devices/bus/rs232/swtpc8212.cpp b/src/devices/bus/rs232/swtpc8212.cpp index ea48a2cecf8..b7265aea5d5 100644 --- a/src/devices/bus/rs232/swtpc8212.cpp +++ b/src/devices/bus/rs232/swtpc8212.cpp @@ -23,9 +23,9 @@ void swtpc8212_terminal_device::device_add_mconfig(machine_config &config) INPUT_PORTS_START(swtpc8212_terminal) PORT_START("FLOW_CONTROL") - PORT_CONFNAME(0x1, 1, "Flow control") - PORT_CONFSETTING(0x00, "None") PORT_CHANGED_MEMBER(DEVICE_SELF, swtpc8212_terminal_device, flow_control, 0) - PORT_CONFSETTING(0x01, "Terminal DTR to remote CTS") PORT_CHANGED_MEMBER(DEVICE_SELF, swtpc8212_terminal_device, flow_control, 0) + PORT_CONFNAME(0x1, 1, "Flow control") PORT_CHANGED_MEMBER(DEVICE_SELF, swtpc8212_terminal_device, flow_control, 0) + PORT_CONFSETTING(0x00, "None") + PORT_CONFSETTING(0x01, "Terminal DTR to remote CTS") INPUT_PORTS_END diff --git a/src/mame/drivers/tv990.cpp b/src/mame/drivers/tv990.cpp index dc36e1a3cbe..6544df8851d 100644 --- a/src/mame/drivers/tv990.cpp +++ b/src/mame/drivers/tv990.cpp @@ -333,10 +333,10 @@ void tv990_state::tv990_mem(address_map &map) static INPUT_PORTS_START( tv990 ) PORT_INCLUDE( at_keyboard ) PORT_START("Screen") - PORT_CONFNAME( 0x30, 0x00, "Color") - PORT_CONFSETTING( 0x00, "Green") PORT_CHANGED_MEMBER(DEVICE_SELF, tv990_state, color, 0) - PORT_CONFSETTING( 0x10, "Amber") PORT_CHANGED_MEMBER(DEVICE_SELF, tv990_state, color, 0) - PORT_CONFSETTING( 0x20, "White") PORT_CHANGED_MEMBER(DEVICE_SELF, tv990_state, color, 0) + PORT_CONFNAME( 0x30, 0x00, "Color") PORT_CHANGED_MEMBER(DEVICE_SELF, tv990_state, color, 0) + PORT_CONFSETTING( 0x00, "Green") + PORT_CONFSETTING( 0x10, "Amber") + PORT_CONFSETTING( 0x20, "White") INPUT_PORTS_END INPUT_CHANGED_MEMBER(tv990_state::color)