summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/system1.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/video/system1.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/video/system1.c')
-rw-r--r--src/mame/video/system1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/system1.c b/src/mame/video/system1.c
index b3d490be6e3..2e4e8411c27 100644
--- a/src/mame/video/system1.c
+++ b/src/mame/video/system1.c
@@ -130,7 +130,7 @@ static void video_start_common(running_machine &machine, int pagecount)
/* create the tilemap pages */
for (pagenum = 0; pagenum < pagecount; pagenum++)
{
- state->m_tilemap_page[pagenum] = tilemap_create(machine, tile_get_info, tilemap_scan_rows, 8,8, 32,32);
+ state->m_tilemap_page[pagenum] = tilemap_create(machine, tile_get_info, TILEMAP_SCAN_ROWS, 8,8, 32,32);
state->m_tilemap_page[pagenum]->set_transparent_pen(0);
state->m_tilemap_page[pagenum]->set_user_data(state->m_videoram + 0x800 * pagenum);
}