summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gomoku.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gomoku.c')
-rw-r--r--src/mame/drivers/gomoku.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/gomoku.c b/src/mame/drivers/gomoku.c
index 076a8581305..b08bc25c761 100644
--- a/src/mame/drivers/gomoku.c
+++ b/src/mame/drivers/gomoku.c
@@ -50,7 +50,7 @@ static READ8_HANDLER( input_port_r )
{
int i, res;
static const char *portnames[] = { "IN0", "IN1", "DSW", "UNUSED0", "UNUSED1", "UNUSED2", "UNUSED3", "UNUSED4" };
-
+
res = 0;
for (i = 0; i < 8; i++)
res |= ((input_port_read(machine, portnames[i]) >> offset) & 1) << i;