summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/jubilee.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2012-09-05 16:58:19 +0000
committer Aaron Giles <aaron@aarongiles.com>2012-09-05 16:58:19 +0000
commit104ae23dcbffca69813b2a8810090df9fc029b5a (patch)
treedd0920cccced2dc9692f7b8269a4431e3c513cb0 /src/mame/drivers/jubilee.c
parentc99cbedd3520f1fdebbd6838951c62051ee901cd (diff)
Replaced standard mappers with an enumeration that maps internally
to the original functions. The only change is to all-caps since these are constants, e.g., tilemap_scan_rows -> TILEMAP_SCAN_ROWS.
Diffstat (limited to 'src/mame/drivers/jubilee.c')
-rw-r--r--src/mame/drivers/jubilee.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/jubilee.c b/src/mame/drivers/jubilee.c
index 23fd8984942..dc87b691675 100644
--- a/src/mame/drivers/jubilee.c
+++ b/src/mame/drivers/jubilee.c
@@ -129,7 +129,7 @@ static TILE_GET_INFO( get_bg_tile_info )
static VIDEO_START( jubileep )
{
jubilee_state *state = machine.driver_data<jubilee_state>();
- state->m_bg_tilemap = tilemap_create(machine, get_bg_tile_info, tilemap_scan_rows, 8, 8, 32, 32);
+ state->m_bg_tilemap = tilemap_create(machine, get_bg_tile_info, TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
}