mirror of
https://github.com/holub/mame
synced 2025-04-26 18:23:08 +03:00
sega/segaorun.cpp: reverted erroneous change in one of my previous commits
This commit is contained in:
parent
368d9d6909
commit
7b45bf1403
@ -770,7 +770,7 @@ void segaorun_state::shangon_custom_io_w(offs_t offset, uint16_t data, uint16_t
|
||||
// D3: Vibration motor
|
||||
// D2: Start lamp
|
||||
// other bits: ?
|
||||
m_adc_select = BIT(data, 7, 6);
|
||||
m_adc_select = data >> 6 & 3;
|
||||
m_segaic16vid->set_display_enable(BIT(data, 5));
|
||||
m_vibration_motor = BIT(data, 3);
|
||||
m_start_lamp = BIT(data, 2);
|
||||
|
Loading…
Reference in New Issue
Block a user