mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Fixes scan functions for Bg.. they were swapped.. no idea who broke this, or when it broke...
This commit is contained in:
parent
7088b5139e
commit
15eeeaa04d
1 changed files with 2 additions and 2 deletions
|
@ -34,13 +34,13 @@ static TILE_GET_INFO( get_kickgoal_bg2_tile_info )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static TILEMAP_MAPPER( tilemap_scan_kicksbg )
|
static TILEMAP_MAPPER( tilemap_scan_kicksbg2 )
|
||||||
{
|
{
|
||||||
/* logical (col,row) -> memory offset */
|
/* logical (col,row) -> memory offset */
|
||||||
return col*8 + (row & 0x7) + ((row & 0x3c) >> 3) * 0x200;
|
return col*8 + (row & 0x7) + ((row & 0x3c) >> 3) * 0x200;
|
||||||
}
|
}
|
||||||
|
|
||||||
static TILEMAP_MAPPER( tilemap_scan_kicksbg2 )
|
static TILEMAP_MAPPER( tilemap_scan_kicksbg )
|
||||||
{
|
{
|
||||||
/* logical (col,row) -> memory offset */
|
/* logical (col,row) -> memory offset */
|
||||||
return col*16 + (row & 0xf) + ((row & 0x70) >> 4) * 0x400;
|
return col*16 + (row & 0xf) + ((row & 0x70) >> 4) * 0x400;
|
||||||
|
|
Loading…
Reference in a new issue