summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gaiden.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gaiden.c')
-rw-r--r--src/mame/drivers/gaiden.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/gaiden.c b/src/mame/drivers/gaiden.c
index ca38b5f939c..dabe9d1c47b 100644
--- a/src/mame/drivers/gaiden.c
+++ b/src/mame/drivers/gaiden.c
@@ -135,9 +135,9 @@ static WRITE16_HANDLER( gaiden_sound_command_w )
{
gaiden_state *state = (gaiden_state *)space->machine->driver_data;
- if (ACCESSING_BITS_0_7)
+ if (ACCESSING_BITS_0_7)
soundlatch_w(space, 0, data & 0xff); /* Ninja Gaiden */
- if (ACCESSING_BITS_8_15)
+ if (ACCESSING_BITS_8_15)
soundlatch_w(space, 0, data >> 8); /* Tecmo Knight */
cpu_set_input_line(state->audiocpu, INPUT_LINE_NMI, PULSE_LINE);
}