summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Fabio Priuli <etabeta78@users.noreply.github.com>2010-04-03 04:26:55 +0000
committer Fabio Priuli <etabeta78@users.noreply.github.com>2010-04-03 04:26:55 +0000
commitfd7120a48e803e598ef22430ad12d3d8e8bedc5e (patch)
treee4466c2a6b630e7264786c7c4e5f52c7e000b506
parent95f8cbc6f6a71232e7ecb5a30fefb540ff9189c2 (diff)
midtunit.c: Fixed TMS340 parameter [Alex Jackson]
-rw-r--r--src/mame/drivers/midtunit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/midtunit.c b/src/mame/drivers/midtunit.c
index e01bed0db6b..8b4da634d95 100644
--- a/src/mame/drivers/midtunit.c
+++ b/src/mame/drivers/midtunit.c
@@ -416,7 +416,7 @@ static INPUT_PORTS_START( nbajam )
PORT_BIT( 0x0200, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN ) PORT_8WAY PORT_PLAYER(4)
PORT_BIT( 0x0400, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_8WAY PORT_PLAYER(4)
PORT_BIT( 0x0800, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_8WAY PORT_PLAYER(4)
- PORT_BIT( 0x1000, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_PLAYER(4)
+ PORT_BIT( 0x1000, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_PLAYER(4)
PORT_BIT( 0x2000, IP_ACTIVE_LOW, IPT_BUTTON3 ) PORT_PLAYER(4)
PORT_BIT( 0x4000, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(4)
PORT_BIT( 0x8000, IP_ACTIVE_LOW, IPT_UNUSED )
@@ -615,7 +615,7 @@ static MACHINE_DRIVER_START( tunit_core )
MDRV_SCREEN_ADD("screen", RASTER)
MDRV_SCREEN_FORMAT(BITMAP_FORMAT_INDEXED16)
- MDRV_SCREEN_RAW_PARAMS(PIXEL_CLOCK, 505, 0, 399, 289, 0, 253)
+ MDRV_SCREEN_RAW_PARAMS(PIXEL_CLOCK * 2, 505, 0, 399, 289, 0, 253)
MDRV_VIDEO_START(midtunit)
MDRV_VIDEO_UPDATE(tms340x0)