summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/tilemap.h
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-03-06 00:56:42 -0500
committer AJR <ajrhacker@users.noreply.github.com>2018-03-06 00:57:03 -0500
commit4a3622950d6ea1498def90b6cb0e3a6f107e6bda (patch)
treed901ed784f3de86b0123bb335bc9d97aa45b3169 /src/emu/tilemap.h
parent4008ad3a0be7170ee3f9496bfc2d7232d6491992 (diff)
Fix tilemap device (nw)
Diffstat (limited to 'src/emu/tilemap.h')
-rw-r--r--src/emu/tilemap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/tilemap.h b/src/emu/tilemap.h
index 10a6bdfba06..909f4177647 100644
--- a/src/emu/tilemap.h
+++ b/src/emu/tilemap.h
@@ -386,7 +386,7 @@ enum tilemap_standard_mapper
#define MCFG_TILEMAP_TILE_SIZE(_width, _height) \
downcast<tilemap_device &>(*device).set_tile_size(_width, _height);
#define MCFG_TILEMAP_TRANSPARENT_PEN(_pen) \
- downcast<tilemap_device &>(*device).set_transparent_pen(_pen);
+ downcast<tilemap_device &>(*device).set_configured_transparent_pen(_pen);
// common cases
#define MCFG_TILEMAP_ADD_STANDARD(_tag, _gfxtag, _bytes_per_entry, _class, _method, _tilewidth, _tileheight, _mapper, _columns, _rows) \
@@ -736,7 +736,7 @@ public:
m_num_rows = rows;
}
void set_tile_size(u16 width, u16 height) { m_tile_width = width; m_tile_height = height; }
- void set_transparent_pen(pen_t pen) { m_transparent_pen_set = true; m_transparent_pen = pen; }
+ void set_configured_transparent_pen(pen_t pen) { m_transparent_pen_set = true; m_transparent_pen = pen; }
// getters
memory_array &basemem() { return m_basemem; }