summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/efdt.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2020-03-11 15:47:30 +1100
committer Vas Crabb <vas@vastheman.com>2020-03-11 15:47:30 +1100
commit9733f5cf3df1255566dc147540a8d6ceab4adb6d (patch)
tree637f1e69a2b520771888635337ea4e051d7fa797 /src/mame/drivers/efdt.cpp
parente7b33bd5e22adfc7422c969a0a2b6400c6563394 (diff)
tilemap: that macro has contributed nothing but obfuscation since we moved to C++
Diffstat (limited to 'src/mame/drivers/efdt.cpp')
-rw-r--r--src/mame/drivers/efdt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/efdt.cpp b/src/mame/drivers/efdt.cpp
index ad981cc4cda..18a17bfd03b 100644
--- a/src/mame/drivers/efdt.cpp
+++ b/src/mame/drivers/efdt.cpp
@@ -207,7 +207,7 @@ TILE_GET_INFO_MEMBER(efdt_state::get_tile_info_0)
//int code = data + (xtra << 8);
int code = data + m_tilebank;
- SET_TILE_INFO_MEMBER(0, code, pal, 0);
+ tileinfo.set(0, code, pal, 0);
}
TILE_GET_INFO_MEMBER(efdt_state::get_tile_info_1)
@@ -216,7 +216,7 @@ TILE_GET_INFO_MEMBER(efdt_state::get_tile_info_1)
int code = data;
- SET_TILE_INFO_MEMBER(1, code, 0x1c, 0);
+ tileinfo.set(1, code, 0x1c, 0);
}
void efdt_state::video_start()