From b509d3de38ab41122fecfb3d9955389d7125f2dd Mon Sep 17 00:00:00 2001 From: iq_132 <1191709+iq132@users.noreply.github.com> Date: Mon, 8 Sep 2014 21:48:23 +0000 Subject: [PATCH] Fix Black Tiger tilemap type 0. --- src/burn/drv/pre90s/d_blktiger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/burn/drv/pre90s/d_blktiger.cpp b/src/burn/drv/pre90s/d_blktiger.cpp index 8e6a026a1..1fa2902a7 100644 --- a/src/burn/drv/pre90s/d_blktiger.cpp +++ b/src/burn/drv/pre90s/d_blktiger.cpp @@ -579,7 +579,7 @@ static void draw_bg(INT32 type, INT32 layer) sx = (offs & 0x3f); sy = (offs >> 6); - ofst = (sx & 0x0f) + ((sy & 0x0f) << 4) + ((sx & 0x30) << 4) + ((sy & 0x70) << 7); + ofst = (sx & 0x0f) + ((sy & 0x0f) << 4) + ((sx & 0x30) << 4) + ((sy & 0x70) << 6); } sx = (sx * 16) - scrollx;