summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gauntlet.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2022-03-28 18:11:51 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2022-03-28 18:11:51 +0200
commit19fe9e23a68ea2928006e7f319d3c3c296c704c9 (patch)
tree802a5a3443d932131b2169756844cfcbc42ca114 /src/mame/drivers/gauntlet.cpp
parentd832d6a3662d60ddd8aac9843ddd1f924dfc9976 (diff)
- diverboy.cpp, exzisus.cpp: finders, other minor cleanups
- various drivers: removed some custom GFX decodes in favor of the ones provided in emu/video/generic.cpp
Diffstat (limited to 'src/mame/drivers/gauntlet.cpp')
-rw-r--r--src/mame/drivers/gauntlet.cpp16
1 files changed, 2 insertions, 14 deletions
diff --git a/src/mame/drivers/gauntlet.cpp b/src/mame/drivers/gauntlet.cpp
index 4b24a959c9c..258cd6b5410 100644
--- a/src/mame/drivers/gauntlet.cpp
+++ b/src/mame/drivers/gauntlet.cpp
@@ -446,21 +446,9 @@ static const gfx_layout anlayout =
};
-static const gfx_layout pfmolayout =
-{
- 8,8,
- RGN_FRAC(1,4),
- 4,
- { RGN_FRAC(3,4), RGN_FRAC(2,4), RGN_FRAC(1,4), RGN_FRAC(0,4) },
- { 0, 1, 2, 3, 4, 5, 6, 7 },
- { 0*8, 1*8, 2*8, 3*8, 4*8, 5*8, 6*8, 7*8 },
- 8*8
-};
-
-
static GFXDECODE_START( gfx_gauntlet )
- GFXDECODE_ENTRY( "gfx2", 0, pfmolayout, 256, 32 )
- GFXDECODE_ENTRY( "gfx1", 0, anlayout, 0, 64 )
+ GFXDECODE_ENTRY( "gfx2", 0, gfx_8x8x4_planar, 256, 32 )
+ GFXDECODE_ENTRY( "gfx1", 0, anlayout, 0, 64 )
GFXDECODE_END