model2: fix lightgun games (nw)

This commit is contained in:
Dirk Best 2018-04-29 10:54:02 +02:00
parent 2cc5dc8c8b
commit c69c679b32

View File

@ -1193,7 +1193,7 @@ void model2_state::model2_5881_mem(address_map &map)
READ8_MEMBER( model2_state::lightgun_data_r )
{
uint16_t data = m_lightgun_ports[offset].read_safe(0);
uint16_t data = m_lightgun_ports[offset >> 1].read_safe(0);
return BIT(offset, 0) ? (data >> 8) : data;
}