summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/emupal.h
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-12-28 05:45:20 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-12-28 05:45:20 +0000
commit4e9be151f70461a69249619f81feed354d929910 (patch)
tree14d10e5aa8539c0a6a4dc1167a438b10b8d7366b /src/emu/emupal.h
parent922d9fabc97e91a9f600f4f839ecfb75a84fb6ed (diff)
Renamed tilemap -> tilemap_t, as the name 'tilemap' is too commonly
used for statics and structure members, and some compilers (esp. C++ compilers) don't allow that.
Diffstat (limited to 'src/emu/emupal.h')
-rw-r--r--src/emu/emupal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/emupal.h b/src/emu/emupal.h
index de843b4933c..ec9b9ffa3cd 100644
--- a/src/emu/emupal.h
+++ b/src/emu/emupal.h
@@ -169,7 +169,7 @@ rgb_t colortable_palette_get_color(colortable_t *ctable, UINT32 entry);
UINT32 colortable_get_transpen_mask(colortable_t *ctable, const gfx_element *gfx, int color, int transcolor);
/* configure groups in a tilemap to represent transparency based on colortable entries (each group maps to a gfx color) */
-void colortable_configure_tilemap_groups(colortable_t *ctable, tilemap *tmap, const gfx_element *gfx, int transcolor);
+void colortable_configure_tilemap_groups(colortable_t *ctable, tilemap_t *tmap, const gfx_element *gfx, int transcolor);
/* return the number of entries in a colortable */
UINT32 colortable_palette_get_size(colortable_t *ctable);