diff options
| author | 2008-07-12 18:22:13 +0000 | |
|---|---|---|
| committer | 2008-07-12 18:22:13 +0000 | |
| commit | 465010dc114464564a5b7920dcb2f08338992b25 (patch) | |
| tree | 916c066ca3bfc83cd2dd1ccbeba21bf588ae9b9d /src | |
| parent | ec3652a3af161737274dc0ead7ae90facbd0c97d (diff) | |
00079: faceoff: When you go for a penalty shot the screen is upside down.
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/machine/namcos1.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mame/machine/namcos1.c b/src/mame/machine/namcos1.c index facfe52f5e7..7fb00571a81 100644 --- a/src/mame/machine/namcos1.c +++ b/src/mame/machine/namcos1.c @@ -1454,13 +1454,21 @@ static READ8_HANDLER( faceoff_inputs_r ) case 0: stored_input[0] = input_port_read(machine, "IN0") & 0x1f; stored_input[1] = (input_port_read(machine, "IN3") & 0x07) << 3; + break; case 3: stored_input[0] = input_port_read(machine, "IN2") & 0x1f; + break; case 4: stored_input[0] = input_port_read(machine, "IN1") & 0x1f; stored_input[1] = input_port_read(machine, "IN3") & 0x18; + break; + + default: + stored_input[0] = 0x1f; + stored_input[1] = 0x1f; + break; } input_count = (input_count + 1) & 7; |
