diff options
Diffstat (limited to 'src/mame/drivers/tugboat.cpp')
-rw-r--r-- | src/mame/drivers/tugboat.cpp | 30 |
1 files changed, 4 insertions, 26 deletions
diff --git a/src/mame/drivers/tugboat.cpp b/src/mame/drivers/tugboat.cpp index 14c68c1006b..a15180f53ea 100644 --- a/src/mame/drivers/tugboat.cpp +++ b/src/mame/drivers/tugboat.cpp @@ -329,33 +329,11 @@ static INPUT_PORTS_START( noahsark ) INPUT_PORTS_END -static const gfx_layout charlayout = -{ - 8,8, - RGN_FRAC(1,1), - 1, - { 0 }, - { 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 const gfx_layout tilelayout = -{ - 8,8, - RGN_FRAC(1,3), - 3, - { RGN_FRAC(2,3), RGN_FRAC(1,3), RGN_FRAC(0,3) }, - { 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_tugboat ) - GFXDECODE_ENTRY( "gfx1", 0, charlayout, 0x80, 16 ) - GFXDECODE_ENTRY( "gfx2", 0, tilelayout, 0x80, 16 ) - GFXDECODE_ENTRY( "gfx3", 0, charlayout, 0x00, 16 ) - GFXDECODE_ENTRY( "gfx4", 0, tilelayout, 0x00, 16 ) + GFXDECODE_ENTRY( "gfx1", 0, gfx_8x8x1, 0x80, 16 ) + GFXDECODE_ENTRY( "gfx2", 0, gfx_8x8x3_planar, 0x80, 16 ) + GFXDECODE_ENTRY( "gfx3", 0, gfx_8x8x1, 0x00, 16 ) + GFXDECODE_ENTRY( "gfx4", 0, gfx_8x8x3_planar, 0x00, 16 ) GFXDECODE_END |