summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/raiden2.c
diff options
context:
space:
mode:
author David Haywood <mamehaze@users.noreply.github.com>2014-09-20 09:21:54 +0000
committer David Haywood <mamehaze@users.noreply.github.com>2014-09-20 09:21:54 +0000
commit975e125c6db31fe04d123d23cecb3d05ef1a6ae2 (patch)
tree0f3d83d6cf6c66ecb2ea4ddd8765f9967ee2d2c9 /src/mame/drivers/raiden2.c
parent69f76f96fba6375eb7c6b4d43378ef0442e30aa1 (diff)
added 2 blend pens for ZT (from OG)
New Working Games Raiden II New / Raiden DX (newer V33 PCB) (2 sets, different EEPROM for each game) [Olivier Galibert, David Haywood] New Zero Team [Olivier Galibert, David Haywood] Zero Team 2000 [Olivier Galibert, David Haywood]
Diffstat (limited to 'src/mame/drivers/raiden2.c')
-rw-r--r--src/mame/drivers/raiden2.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mame/drivers/raiden2.c b/src/mame/drivers/raiden2.c
index a6f21b132b9..1789cf77e5f 100644
--- a/src/mame/drivers/raiden2.c
+++ b/src/mame/drivers/raiden2.c
@@ -3408,9 +3408,14 @@ DRIVER_INIT_MEMBER(raiden2_state,xsedae)
/* doesn't have banking */
}
+const UINT16 raiden2_state::zeroteam_blended_colors[] = {
+ 0x37e, 0x5de
+};
+
+
DRIVER_INIT_MEMBER(raiden2_state,zeroteam)
{
- init_blending(xsedae_blended_colors);
+ init_blending(zeroteam_blended_colors);
static const int spri[5] = { -1, 0, 1, 2, 3 };
cur_spri = spri;
membank("mainbank1")->configure_entries(0, 4, memregion("mainprg")->base(), 0x10000);