From e8bfddca0942bd4c909ac407295940eb7d4ca461 Mon Sep 17 00:00:00 2001 From: iq_132 <1191709+iq132@users.noreply.github.com> Date: Sat, 24 Jan 2015 19:38:41 +0000 Subject: [PATCH] Couple of fixes. --- src/burn/drv/konami/d_asterix.cpp | 4 ++-- src/burn/drv/konami/d_gberet.cpp | 2 +- src/burn/drv/konami/d_lethal.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/burn/drv/konami/d_asterix.cpp b/src/burn/drv/konami/d_asterix.cpp index 61f632270..c868d0c11 100644 --- a/src/burn/drv/konami/d_asterix.cpp +++ b/src/burn/drv/konami/d_asterix.cpp @@ -443,9 +443,9 @@ static INT32 MemIndex() static INT32 DrvGfxDecode() { - INT32 Plane1[4] = { STEP4(24, - 8) }; + INT32 Plane1[4] = { STEP4(24, -8) }; INT32 XOffs1[16] = { STEP8(0,1), STEP8(256,1) }; - INT32 YOffs1[16] = { STEP8(0,32, STEP8(512,32) }; + INT32 YOffs1[16] = { STEP8(0,32), STEP8(512,32) }; K053247GfxDecode(DrvGfxROM0, DrvGfxROMExp0, 0x100000); diff --git a/src/burn/drv/konami/d_gberet.cpp b/src/burn/drv/konami/d_gberet.cpp index 1736c2664..f7cad3157 100644 --- a/src/burn/drv/konami/d_gberet.cpp +++ b/src/burn/drv/konami/d_gberet.cpp @@ -578,7 +578,7 @@ static void DrvGfxDecode() { static INT32 Planes[4] = { STEP4(0,1) }; static INT32 XOffs[16] = { STEP8(0,4), STEP8(256,4) }; - static INT32 YOffs[16] = { STEP8(0,32) STEP8(512,32) }; + static INT32 YOffs[16] = { STEP8(0,32), STEP8(512,32) }; Graphics_Decode(Planes, XOffs, YOffs, Planes, XOffs, YOffs, 0x400); } diff --git a/src/burn/drv/konami/d_lethal.cpp b/src/burn/drv/konami/d_lethal.cpp index 4c07d4d23..566aa1fdc 100644 --- a/src/burn/drv/konami/d_lethal.cpp +++ b/src/burn/drv/konami/d_lethal.cpp @@ -456,7 +456,7 @@ static INT32 DrvGfxDecode() INT32 YOffs0[8] = { STEP8(0,32) }; INT32 Plane1[6] = { (0x200000*8)+8, (0x200000*8)+0, STEP4(24, -8) }; - INT32 XOffs1[16] = { STEP8(0,7) STEP8(256, 1) }; + INT32 XOffs1[16] = { STEP8(0,7), STEP8(256, 1) }; INT32 YOffs1[16] = { STEP8(0,32), STEP8(512,32) }; GfxDecode(0x10000, 8, 8, 8, Plane0, XOffs0, YOffs0, 8*8*4, DrvGfxROM0, DrvGfxROMExp0);