trunk/src/mame/drivers/segas18.c
| r17477 | r17478 | |
| 298 | 298 | segaic16_sprites_set_flip(machine(), 0, data & 0x20); |
| 299 | 299 | // These are correct according to cgfm's docs, but mwalker and ddcrew both |
| 300 | 300 | // enable the lockout and never turn it off |
| 301 | | coin_lockout_w(machine(), 1, data & 0x08); |
| 302 | | coin_lockout_w(machine(), 0, data & 0x04); |
| 301 | // coin_lockout_w(machine(), 1, data & 0x08); |
| 302 | // coin_lockout_w(machine(), 0, data & 0x04); |
| 303 | 303 | coin_counter_w(machine(), 1, data & 0x02); |
| 304 | 304 | coin_counter_w(machine(), 0, data & 0x01); |
| 305 | 305 | break; |