summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/statriv2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/statriv2.cpp')
-rw-r--r--src/mame/drivers/statriv2.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/statriv2.cpp b/src/mame/drivers/statriv2.cpp
index 23ab4279024..3cdfd56a8ab 100644
--- a/src/mame/drivers/statriv2.cpp
+++ b/src/mame/drivers/statriv2.cpp
@@ -570,7 +570,7 @@ static const gfx_layout horizontal_tiles_layout =
16*8
};
-static GFXDECODE_START( horizontal )
+static GFXDECODE_START( gfx_horizontal )
GFXDECODE_ENTRY( "tiles", 0, horizontal_tiles_layout, 0, 64 )
GFXDECODE_END
@@ -586,7 +586,7 @@ static const gfx_layout vertical_tiles_layout =
8*8
};
-static GFXDECODE_START( vertical )
+static GFXDECODE_START( gfx_vertical )
GFXDECODE_ENTRY( "tiles", 0, vertical_tiles_layout, 0, 64 )
GFXDECODE_END
@@ -625,7 +625,7 @@ MACHINE_CONFIG_START(statriv2_state::statriv2)
MCFG_DEVICE_ADD("tms", TMS9927, MASTER_CLOCK/2/8)
MCFG_TMS9927_CHAR_WIDTH(8)
- MCFG_GFXDECODE_ADD("gfxdecode", "palette", horizontal)
+ MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_horizontal)
MCFG_PALETTE_ADD("palette", 2*64)
MCFG_PALETTE_INIT_OWNER(statriv2_state, statriv2)
@@ -645,7 +645,7 @@ MACHINE_CONFIG_START(statriv2_state::statriv2v)
MCFG_SCREEN_RAW_PARAMS(MASTER_CLOCK/2, 392, 0, 256, 262, 0, 256)
MCFG_VIDEO_START_OVERRIDE(statriv2_state, vertical)
- MCFG_GFXDECODE_MODIFY("gfxdecode", vertical)
+ MCFG_GFXDECODE_MODIFY("gfxdecode", gfx_vertical)
MACHINE_CONFIG_END
MACHINE_CONFIG_START(statriv2_state::funcsino)