summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author davidhay <davidhay@localhost>2008-01-09 23:15:18 +0000
committer davidhay <davidhay@localhost>2008-01-09 23:15:18 +0000
commit15eeeaa04d628cae47c30bfc81847db2eee6fffb (patch)
treea2af11594f43ab62ff7ad5d04e16a9bf230d1a32 /src
parent7088b5139efee0561d1b39f760e4ad812bbbac54 (diff)
Fixes scan functions for Bg.. they were swapped.. no idea who broke this, or when it broke...
Diffstat (limited to 'src')
-rw-r--r--src/mame/video/kickgoal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/kickgoal.c b/src/mame/video/kickgoal.c
index e3ed91cc423..0f707243942 100644
--- a/src/mame/video/kickgoal.c
+++ b/src/mame/video/kickgoal.c
@@ -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 */
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 */
return col*16 + (row & 0xf) + ((row & 0x70) >> 4) * 0x400;