summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/rainbow.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-11-04 17:57:08 +1100
committer Vas Crabb <vas@vastheman.com>2018-11-04 17:57:08 +1100
commit9cbc957076af5c91b4d797811dfc8eea09d6ed50 (patch)
treed0b0872b6fba60e98e926ad56183ab1ef63af071 /src/mame/drivers/rainbow.cpp
parent04a32321628c8af794c4f987ba3ae55aab69de33 (diff)
(nw) misc cleanup:
* tabify a JSON file (not currently handled by srcclean) * get rid of stray printf * ยต'nSP in header comments - we do UTF-8 source * spg2xx.cpp: make room for LOG_GENERAL - it's defined as (1U << 0) if you don't give it a different value * spg2xx.h: inline on member function declarations generally doesn't do anything useful - it's implicit when the function body is inlined at declaration, and in other cases you usually want to put the inline qualifier on the definition, not the declaration * rainbow.cpp: revert mouse changes - there's no reason a Mouse Systems driver couldn't be loaded, and the Logitech mouse is Microsoft-compatible * video21.cpp: use deal/stand for blackjack control buttons now that we're not using deal for vblank
Diffstat (limited to 'src/mame/drivers/rainbow.cpp')
-rw-r--r--src/mame/drivers/rainbow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/rainbow.cpp b/src/mame/drivers/rainbow.cpp
index 45b6bdda883..e6ea32255f8 100644
--- a/src/mame/drivers/rainbow.cpp
+++ b/src/mame/drivers/rainbow.cpp
@@ -3325,9 +3325,9 @@ MACHINE_CONFIG_START(rainbow_state::rainbow)
printer.dcd_handler().set(m_mpsc, FUNC(upd7201_new_device::ctsb_w)); // actually DTR
m_comm_port->option_add("microsoft_mouse", MSFT_HLE_SERIAL_MOUSE);
- //m_comm_port->option_add("logitech_mouse", LOGITECH_HLE_SERIAL_MOUSE);
- //m_comm_port->option_add("msystems_mouse", MSYSTEMS_HLE_SERIAL_MOUSE);
- m_comm_port->set_default_option("microsoft_mouse");
+ m_comm_port->option_add("logitech_mouse", LOGITECH_HLE_SERIAL_MOUSE);
+ m_comm_port->option_add("msystems_mouse", MSYSTEMS_HLE_SERIAL_MOUSE);
+ m_comm_port->set_default_option("logitech_mouse");
printer.set_default_option("printer");