diff options
| author | 2010-05-09 19:02:41 +0000 | |
|---|---|---|
| committer | 2010-05-09 19:02:41 +0000 | |
| commit | 2549ce6904d136e2b83e460a4fbbe44083840cfd (patch) | |
| tree | 727127b5e952a776d947097fdd68490911e640b4 /src | |
| parent | 358a9035fd1e0ff0c66459f034e10b62e94a519f (diff) | |
mametesters bugfix:
- 03273: [Original Reference] brubber, bnj, caractn: Incorrect screen resolution for Burnin' Rubber and clones (hap)
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/drivers/btime.c | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/mame/drivers/btime.c b/src/mame/drivers/btime.c index d99ce58e465..57f32723af8 100644 --- a/src/mame/drivers/btime.c +++ b/src/mame/drivers/btime.c @@ -1593,8 +1593,7 @@ static MACHINE_DRIVER_START( mmonkey ) MDRV_MACHINE_RESET(mmonkey) MACHINE_DRIVER_END - -static MACHINE_DRIVER_START( bnj ) +static MACHINE_DRIVER_START( sdtennis ) /* basic machine hardware */ MDRV_IMPORT_FROM(btime) @@ -1610,6 +1609,17 @@ static MACHINE_DRIVER_START( bnj ) MACHINE_DRIVER_END +static MACHINE_DRIVER_START( bnj ) + + /* basic machine hardware */ + MDRV_IMPORT_FROM(sdtennis) + + /* video hardware */ + MDRV_DEVICE_MODIFY("screen") + MDRV_SCREEN_VISIBLE_AREA(0*8, 32*8-1, 1*8, 31*8-1) // 256 * 240, confirmed +MACHINE_DRIVER_END + + static MACHINE_DRIVER_START( zoar ) /* basic machine hardware */ @@ -2215,4 +2225,4 @@ GAME( 1982, caractn, brubber, bnj, bnj, bnj, ROT270, "bootleg", GAME( 1982, zoar, 0, zoar, zoar, zoar, ROT270, "Data East USA", "Zoar", GAME_SUPPORTS_SAVE ) GAME( 1982, disco, 0, disco, disco, disco, ROT270, "Data East", "Disco No.1", GAME_SUPPORTS_SAVE ) GAME( 1982, discof, disco, disco, disco, disco, ROT270, "Data East", "Disco No.1 (Rev.F)", GAME_SUPPORTS_SAVE ) -GAME( 1983, sdtennis, 0, bnj, sdtennis, sdtennis, ROT270, "Data East Corporation", "Super Doubles Tennis", GAME_SUPPORTS_SAVE ) +GAME( 1983, sdtennis, 0, sdtennis, sdtennis, sdtennis, ROT270, "Data East Corporation", "Super Doubles Tennis", GAME_SUPPORTS_SAVE ) |
