summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/bogeyman.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/bogeyman.cpp')
-rw-r--r--src/mame/video/bogeyman.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/bogeyman.cpp b/src/mame/video/bogeyman.cpp
index 8405ae6b06b..5575d481042 100644
--- a/src/mame/video/bogeyman.cpp
+++ b/src/mame/video/bogeyman.cpp
@@ -67,7 +67,7 @@ TILE_GET_INFO_MEMBER(bogeyman_state::get_bg_tile_info)
int code = m_videoram[tile_index] & 0x7f;
int color = (attr >> 1) & 0x07;
- SET_TILE_INFO_MEMBER(gfxbank, code, color, 0);
+ tileinfo.set(gfxbank, code, color, 0);
}
TILE_GET_INFO_MEMBER(bogeyman_state::get_fg_tile_info)
@@ -77,7 +77,7 @@ TILE_GET_INFO_MEMBER(bogeyman_state::get_fg_tile_info)
int gfxbank = tile / 0x200;
int code = tile & 0x1ff;
- SET_TILE_INFO_MEMBER(gfxbank, code, m_colbank, 0);
+ tileinfo.set(gfxbank, code, m_colbank, 0);
}
void bogeyman_state::video_start()