Skip to content

Commit

Permalink
rohga.cpp : Fix gfxdecode instead garbage (#3282)
Browse files Browse the repository at this point in the history
  • Loading branch information
cam900 authored and galibert committed Mar 1, 2018
1 parent 0fcad60 commit f5f1d12
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mame/drivers/rohga.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ static const gfx_layout spritelayout =
RGN_FRAC(1,1),
4,
{ 16, 0, 24, 8 },
{ STEP16(16*8*4,1), STEP8(0,1) },
{ STEP8(16*8*4,1), STEP8(0,1) },
{ STEP16(0,8*4) },
16*16*4
};
Expand All @@ -787,7 +787,7 @@ static const gfx_layout spritelayout_6bpp =
4096*8,
6,
{ 0x400000*8+8, 0x400000*8, 0x200000*8+8, 0x200000*8, 8, 0 },
{ STEP16(16*8*2,1), STEP8(0,1) },
{ STEP8(16*8*2,1), STEP8(0,1) },
{ STEP16(0,8*2) },
16*16*2
};
Expand All @@ -798,7 +798,7 @@ static const gfx_layout tilelayout =
RGN_FRAC(1,2),
4,
{ RGN_FRAC(1,2)+8, RGN_FRAC(1,2), 8, 0 },
{ STEP16(16*8*2,1), STEP8(0,1) },
{ STEP8(16*8*2,1), STEP8(0,1) },
{ STEP16(0,8*2) },
16*16*2
};
Expand Down

0 comments on commit f5f1d12

Please sign in to comment.