diff options
| author | 2008-08-28 08:37:18 +0000 | |
|---|---|---|
| committer | 2008-08-28 08:37:18 +0000 | |
| commit | 727c8323dfb1c78b9bc4114e95ef7fa885a76c28 (patch) | |
| tree | 27a067dfe1094617e5679352b88ced8d07842446 | |
| parent | 8959f89d1a6c40a1e727870cb9eceb0d985d2c20 (diff) | |
From: Fabio Priuli [mailto:doge.fabio@gmail.com]
Subject: fix for MT 2135
This bug dates back to the introduction of the world parent set of rtype.
Finally spotted and (easily) fixed in the attached patch.
Regards,
Fabio
| -rw-r--r-- | src/mame/drivers/m72.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/m72.c b/src/mame/drivers/m72.c index f991714aa25..0d242f3974b 100644 --- a/src/mame/drivers/m72.c +++ b/src/mame/drivers/m72.c @@ -3236,7 +3236,7 @@ ROM_END GAME( 1987, rtype, 0, rtype, rtype, 0, ROT0, "Irem", "R-Type (World)", GAME_NO_COCKTAIL ) -GAME( 1987, rtypej, rtype, rtype, rtypep, 0, ROT0, "Irem", "R-Type (Japan)", GAME_NO_COCKTAIL ) +GAME( 1987, rtypej, rtype, rtype, rtype, 0, ROT0, "Irem", "R-Type (Japan)", GAME_NO_COCKTAIL ) GAME( 1987, rtypejp, rtype, rtype, rtypep, 0, ROT0, "Irem", "R-Type (Japan prototype)", GAME_NO_COCKTAIL ) GAME( 1987, rtypeu, rtype, rtype, rtype, 0, ROT0, "Irem (Nintendo of America license)", "R-Type (US)", GAME_NO_COCKTAIL ) GAME( 1987, bchopper, 0, m72, bchopper, bchopper, ROT0, "Irem", "Battle Chopper", GAME_NO_COCKTAIL ) |
