summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/tbowl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/tbowl.cpp')
-rw-r--r--src/mame/video/tbowl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/tbowl.cpp b/src/mame/video/tbowl.cpp
index d060459868c..014cf0d3f9c 100644
--- a/src/mame/video/tbowl.cpp
+++ b/src/mame/video/tbowl.cpp
@@ -18,7 +18,7 @@ TILE_GET_INFO_MEMBER(tbowl_state::get_tx_tile_info)
tileno = m_txvideoram[tile_index] | ((m_txvideoram[tile_index+0x800] & 0x07) << 8);
col = (m_txvideoram[tile_index+0x800] & 0xf0) >> 4;
- SET_TILE_INFO_MEMBER(0,tileno,col,0);
+ tileinfo.set(0,tileno,col,0);
}
WRITE8_MEMBER(tbowl_state::txvideoram_w)
@@ -37,7 +37,7 @@ TILE_GET_INFO_MEMBER(tbowl_state::get_bg_tile_info)
tileno = m_bgvideoram[tile_index] | ((m_bgvideoram[tile_index+0x1000] & 0x0f) << 8);
col = (m_bgvideoram[tile_index+0x1000] & 0xf0) >> 4;
- SET_TILE_INFO_MEMBER(1,tileno,col,0);
+ tileinfo.set(1,tileno,col,0);
}
WRITE8_MEMBER(tbowl_state::bg2videoram_w)
@@ -77,7 +77,7 @@ TILE_GET_INFO_MEMBER(tbowl_state::get_bg2_tile_info)
tileno ^= 0x400;
col = (m_bg2videoram[tile_index+0x1000] & 0xf0) >> 4;
- SET_TILE_INFO_MEMBER(2,tileno,col,0);
+ tileinfo.set(2,tileno,col,0);
}
WRITE8_MEMBER(tbowl_state::bgvideoram_w)