summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/umipoker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/umipoker.cpp')
-rw-r--r--src/mame/drivers/umipoker.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/umipoker.cpp b/src/mame/drivers/umipoker.cpp
index 9d7b3d4f0b8..96bd58b8fb3 100644
--- a/src/mame/drivers/umipoker.cpp
+++ b/src/mame/drivers/umipoker.cpp
@@ -118,7 +118,7 @@ TILE_GET_INFO_MEMBER(umipoker_state::get_tile_info_0)
int tile = m_vram_0[tile_index*2+0];
int color = m_vram_0[tile_index*2+1] & 0x3f;
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
tile,
color,
0);
@@ -129,7 +129,7 @@ TILE_GET_INFO_MEMBER(umipoker_state::get_tile_info_1)
int tile = m_vram_1[tile_index*2+0];
int color = m_vram_1[tile_index*2+1] & 0x3f;
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
tile,
color,
0);
@@ -140,7 +140,7 @@ TILE_GET_INFO_MEMBER(umipoker_state::get_tile_info_2)
int tile = m_vram_2[tile_index*2+0];
int color = m_vram_2[tile_index*2+1] & 0x3f;
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
tile,
color,
0);
@@ -151,7 +151,7 @@ TILE_GET_INFO_MEMBER(umipoker_state::get_tile_info_3)
int tile = m_vram_3[tile_index*2+0];
int color = m_vram_3[tile_index*2+1] & 0x3f;
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
tile,
color,
0);