summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2016-08-28 15:03:07 +1000
committer Vas Crabb <vas@vastheman.com>2016-08-28 15:03:07 +1000
commit8b32cd1eb5a367f2ae69f42c38a4caa1aa32c558 (patch)
tree56752e85dd3e7f1da1fd60755d2f75a7b158bf6a
parent6a0f6ca570dae37047246e6376d2a532b06bfbba (diff)
Offsets in words, duh
-rw-r--r--src/mame/drivers/dooyong.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/dooyong.cpp b/src/mame/drivers/dooyong.cpp
index f4fd6dbc60d..6839b57452a 100644
--- a/src/mame/drivers/dooyong.cpp
+++ b/src/mame/drivers/dooyong.cpp
@@ -966,10 +966,10 @@ static MACHINE_CONFIG_START( bluehawk, dooyong_z80_state )
MCFG_GFXDECODE_ADD("gfxdecode", "palette", bluehawk)
MCFG_PALETTE_ADD("palette", 1024)
MCFG_PALETTE_FORMAT(xRRRRRGGGGGBBBBB)
- MCFG_DOOYONG_ROM_TILEMAP_ADD("bg", "gfxdecode", 2, "gfx3", 0x78000)
- MCFG_DOOYONG_ROM_TILEMAP_ADD("fg", "gfxdecode", 3, "gfx4", 0x78000)
+ MCFG_DOOYONG_ROM_TILEMAP_ADD("bg", "gfxdecode", 2, "gfx3", 0x3c000)
+ MCFG_DOOYONG_ROM_TILEMAP_ADD("fg", "gfxdecode", 3, "gfx4", 0x3c000)
MCFG_DOOYONG_ROM_TILEMAP_TRANSPARENT_PEN(15)
- MCFG_DOOYONG_ROM_TILEMAP_ADD("fg2", "gfxdecode", 4, "gfx5", 0x38000)
+ MCFG_DOOYONG_ROM_TILEMAP_ADD("fg2", "gfxdecode", 4, "gfx5", 0x1c000)
MCFG_DOOYONG_ROM_TILEMAP_TRANSPARENT_PEN(15)
MCFG_VIDEO_START_OVERRIDE(dooyong_z80_state, bluehawk)
@@ -1005,9 +1005,9 @@ static MACHINE_CONFIG_START( flytiger, dooyong_z80_state )
MCFG_GFXDECODE_ADD("gfxdecode", "palette", flytiger)
MCFG_PALETTE_ADD("palette", 1024*2)
MCFG_PALETTE_FORMAT(xRRRRRGGGGGBBBBB)
- MCFG_DOOYONG_ROM_TILEMAP_ADD("bg", "gfxdecode", 2, "gfx3", 0x78000)
+ MCFG_DOOYONG_ROM_TILEMAP_ADD("bg", "gfxdecode", 2, "gfx3", 0x3c000)
MCFG_DOOYONG_ROM_TILEMAP_TRANSPARENT_PEN(15)
- MCFG_DOOYONG_ROM_TILEMAP_ADD("fg", "gfxdecode", 3, "gfx4", 0x78000)
+ MCFG_DOOYONG_ROM_TILEMAP_ADD("fg", "gfxdecode", 3, "gfx4", 0x3c000)
MCFG_DOOYONG_ROM_TILEMAP_TRANSPARENT_PEN(15)
MCFG_VIDEO_START_OVERRIDE(dooyong_z80_state, flytiger)
@@ -1040,9 +1040,9 @@ static MACHINE_CONFIG_START( primella, dooyong_z80_state )
MCFG_GFXDECODE_ADD("gfxdecode", "palette", primella)
MCFG_PALETTE_ADD("palette", 1024)
MCFG_PALETTE_FORMAT(xRRRRRGGGGGBBBBB)
- MCFG_DOOYONG_ROM_TILEMAP_ADD("bg", "gfxdecode", 1, "gfx2", -0x8000)
+ MCFG_DOOYONG_ROM_TILEMAP_ADD("bg", "gfxdecode", 1, "gfx2", -0x4000)
MCFG_DOOYONG_ROM_TILEMAP_PRIMELLA_CODE_BITS(10)
- MCFG_DOOYONG_ROM_TILEMAP_ADD("fg", "gfxdecode", 2, "gfx3", -0x8000)
+ MCFG_DOOYONG_ROM_TILEMAP_ADD("fg", "gfxdecode", 2, "gfx3", -0x4000)
MCFG_DOOYONG_ROM_TILEMAP_TRANSPARENT_PEN(15)
MCFG_DOOYONG_ROM_TILEMAP_PRIMELLA_CODE_BITS(10)