diff options
author | 2018-03-01 18:16:57 +0900 | |
---|---|---|
committer | 2018-03-01 10:16:57 +0100 | |
commit | f5f1d12582bae750f9901fcee8f2083d1ef56b38 (patch) | |
tree | e0262cbd4c2be3f13600af2f60191239fa67ec01 | |
parent | 0fcad606259f611b167110bfe6401394572ad070 (diff) |
rohga.cpp : Fix gfxdecode instead garbage (#3282)
-rw-r--r-- | src/mame/drivers/rohga.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/rohga.cpp b/src/mame/drivers/rohga.cpp index 1caaeb7524b..0fcdbbaba6b 100644 --- a/src/mame/drivers/rohga.cpp +++ b/src/mame/drivers/rohga.cpp @@ -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 }; @@ -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 }; @@ -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 }; |