Fix Black Tiger tilemap type 0.

This commit is contained in:
iq_132 2014-09-08 21:48:23 +00:00
parent 98f2d19ac8
commit b509d3de38
1 changed files with 1 additions and 1 deletions

View File

@ -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;