summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2014-09-20 17:48:27 +0000
committer Olivier Galibert <galibert@pobox.com>2014-09-20 17:48:27 +0000
commit690200cba8d3efa2f0db7d6f76a6548449d1c5b2 (patch)
treee004aff1251ba413a40d0a7f5f4d35fb8e307380
parent9392a37f0b7f7dfd25bb49775b3c21a484a757a7 (diff)
zt blending (nw)
-rw-r--r--src/mame/drivers/r2dx_v33.c2
-rw-r--r--src/mame/drivers/raiden2.c9
2 files changed, 10 insertions, 1 deletions
diff --git a/src/mame/drivers/r2dx_v33.c b/src/mame/drivers/r2dx_v33.c
index c1f862e0e28..e82c41a7b6d 100644
--- a/src/mame/drivers/r2dx_v33.c
+++ b/src/mame/drivers/r2dx_v33.c
@@ -392,6 +392,8 @@ static ADDRESS_MAP_START( nzeroteam_base_map, AS_PROGRAM, 16, r2dx_v33_state )
// 0x404 is bank on r2dx, this doesn't need it
// AM_RANGE(0x00406, 0x00407) AM_WRITE(tile_bank_w) // not the same?
+ AM_RANGE(0x00406, 0x00407) AM_NOP // always 6022, supposed to be the tile bank but ignroes the actual value???
+
AM_RANGE(0x00420, 0x00421) AM_WRITE(r2dx_dx_w)
AM_RANGE(0x00422, 0x00423) AM_WRITE(r2dx_dy_w)
AM_RANGE(0x00424, 0x00425) AM_WRITE(r2dx_sdistl_w)
diff --git a/src/mame/drivers/raiden2.c b/src/mame/drivers/raiden2.c
index 1789cf77e5f..053a2554b0d 100644
--- a/src/mame/drivers/raiden2.c
+++ b/src/mame/drivers/raiden2.c
@@ -3409,7 +3409,14 @@ DRIVER_INIT_MEMBER(raiden2_state,xsedae)
}
const UINT16 raiden2_state::zeroteam_blended_colors[] = {
- 0x37e, 0x5de
+ // Player selection
+ 0x37e,
+ // Scaffolding shadow
+ 0x52e,
+ // Road brightening
+ 0x5de,
+
+ 0xffff
};