summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/shangkid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/shangkid.cpp')
-rw-r--r--src/mame/video/shangkid.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/shangkid.cpp b/src/mame/video/shangkid.cpp
index ca1b5b9a0c9..ebb86364d45 100644
--- a/src/mame/video/shangkid.cpp
+++ b/src/mame/video/shangkid.cpp
@@ -21,7 +21,7 @@ TILE_GET_INFO_MEMBER(shangkid_state::get_bg_tile_info)
*/
color = attributes>>3;
color = (color&0x03)|((color&0x1c)<<1);
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
tile_number,
color,
(attributes&0x04)?TILE_FLIPX:0);
@@ -34,7 +34,7 @@ TILE_GET_INFO_MEMBER(shangkid_state::get_bg_tile_info)
x------- flipx?
*/
color = (attributes>>2)&0x1f;
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
tile_number,
color,
(attributes&0x80)?TILE_FLIPX:0);