From 6701abab273ac3c3005e5a4454078750993d8ff3 Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Thu, 24 Jul 2008 05:47:17 +0000 Subject: [PATCH] From: Fabio Priuli [mailto:doge.fabio@gmail.com] Sent: Monday, July 21, 2008 2:16 PM To: submit@mamedev.org Subject: fix for MT 2029 I noticed only today the silly mistake which produced the bug passing from 126 to 126u1. Stupid typo. Attached you find the fix. Regards, Fabio --- src/mame/drivers/segas16b.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/segas16b.c b/src/mame/drivers/segas16b.c index 0e128b57e4d..26f312b2b72 100644 --- a/src/mame/drivers/segas16b.c +++ b/src/mame/drivers/segas16b.c @@ -1141,7 +1141,7 @@ static READ16_HANDLER( standard_io_r ) } case 0x2000/2: - return input_port_read(machine, (offset & 1) ? "DSW2" : "DSW1"); + return input_port_read(machine, (offset & 1) ? "DSW1" : "DSW2"); } logerror("%06X:standard_io_r - unknown read access to address %04X\n", activecpu_get_pc(), offset * 2); return segaic16_open_bus_r(machine,0,mem_mask);