From f42bf8d02ece7abb91e11b9aae975fadff2ffee9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Mon, 15 Jul 2013 13:18:26 +0000 Subject: [PATCH] added some comments to tilemap.h (nw) --- src/emu/tilemap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/emu/tilemap.h b/src/emu/tilemap.h index 16be8b9e39b..3d6551d4436 100644 --- a/src/emu/tilemap.h +++ b/src/emu/tilemap.h @@ -641,8 +641,8 @@ public: // tilemap creation tilemap_t &create(tilemap_get_info_delegate tile_get_info, tilemap_mapper_delegate mapper, int tilewidth, int tileheight, int cols, int rows); tilemap_t &create(tilemap_get_info_delegate tile_get_info, tilemap_standard_mapper mapper, int tilewidth, int tileheight, int cols, int rows); - tilemap_t &create(tile_get_info_func tile_get_info, tilemap_mapper_func mapper, int tilewidth, int tileheight, int cols, int rows); - tilemap_t &create(tile_get_info_func tile_get_info, tilemap_standard_mapper mapper, int tilewidth, int tileheight, int cols, int rows); + tilemap_t &create(tile_get_info_func tile_get_info, tilemap_mapper_func mapper, int tilewidth, int tileheight, int cols, int rows); // legacy + tilemap_t &create(tile_get_info_func tile_get_info, tilemap_standard_mapper mapper, int tilewidth, int tileheight, int cols, int rows); // legacy // tilemap list information tilemap_t *find(int index) { return m_tilemap_list.find(index); }