summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/dkong.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/dkong.cpp')
-rw-r--r--src/mame/video/dkong.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/dkong.cpp b/src/mame/video/dkong.cpp
index c765b35b1c6..798a89ea6e9 100644
--- a/src/mame/video/dkong.cpp
+++ b/src/mame/video/dkong.cpp
@@ -435,7 +435,7 @@ TILE_GET_INFO_MEMBER(dkong_state::dkong_bg_tile_info)
int code = m_video_ram[tile_index] + 256 * m_gfx_bank;
int color = (m_color_codes[tile_index % 32 + 32 * (tile_index / 32 / 4)] & 0x0f) + 0x10 * m_palette_bank;
- SET_TILE_INFO_MEMBER(0, code, color, 0);
+ tileinfo.set(0, code, color, 0);
}
TILE_GET_INFO_MEMBER(dkong_state::radarscp1_bg_tile_info)
@@ -444,7 +444,7 @@ TILE_GET_INFO_MEMBER(dkong_state::radarscp1_bg_tile_info)
int color = (m_color_codes[tile_index % 32] & 0x0f);
color = color | (m_palette_bank<<4);
- SET_TILE_INFO_MEMBER(0, code, color, 0);
+ tileinfo.set(0, code, color, 0);
}
/***************************************************************************