summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/srumbler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/srumbler.cpp')
-rw-r--r--src/mame/video/srumbler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/srumbler.cpp b/src/mame/video/srumbler.cpp
index 5a140c5a57c..f718a0f72cb 100644
--- a/src/mame/video/srumbler.cpp
+++ b/src/mame/video/srumbler.cpp
@@ -21,7 +21,7 @@
TILE_GET_INFO_MEMBER(srumbler_state::get_fg_tile_info)
{
uint8_t attr = m_foregroundram[2*tile_index];
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
m_foregroundram[2*tile_index + 1] + ((attr & 0x03) << 8),
(attr & 0x3c) >> 2,
(attr & 0x40) ? TILE_FORCE_LAYER0 : 0);
@@ -30,7 +30,7 @@ TILE_GET_INFO_MEMBER(srumbler_state::get_fg_tile_info)
TILE_GET_INFO_MEMBER(srumbler_state::get_bg_tile_info)
{
uint8_t attr = m_backgroundram[2*tile_index];
- SET_TILE_INFO_MEMBER(1,
+ tileinfo.set(1,
m_backgroundram[2*tile_index + 1] + ((attr & 0x07) << 8),
(attr & 0xe0) >> 5,
((attr & 0x08) ? TILE_FLIPY : 0));