summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/paradise.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/paradise.cpp')
-rw-r--r--src/mame/video/paradise.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/paradise.cpp b/src/mame/video/paradise.cpp
index 3e5a14ba998..4880da2384d 100644
--- a/src/mame/video/paradise.cpp
+++ b/src/mame/video/paradise.cpp
@@ -102,7 +102,7 @@ WRITE8_MEMBER(paradise_state::palbank_w)
TILE_GET_INFO_MEMBER(paradise_state::get_tile_info_0)
{
int code = m_vram_0[tile_index] + (m_vram_0[tile_index + 0x400] << 8);
- SET_TILE_INFO_MEMBER(1, code, m_palbank, 0);
+ tileinfo.set(1, code, m_palbank, 0);
}
@@ -116,7 +116,7 @@ WRITE8_MEMBER(paradise_state::vram_1_w)
TILE_GET_INFO_MEMBER(paradise_state::get_tile_info_1)
{
int code = m_vram_1[tile_index] + (m_vram_1[tile_index + 0x400] << 8);
- SET_TILE_INFO_MEMBER(2, code, 0, 0);
+ tileinfo.set(2, code, 0, 0);
}
@@ -130,7 +130,7 @@ WRITE8_MEMBER(paradise_state::vram_2_w)
TILE_GET_INFO_MEMBER(paradise_state::get_tile_info_2)
{
int code = m_vram_2[tile_index] + (m_vram_2[tile_index + 0x400] << 8);
- SET_TILE_INFO_MEMBER(3, code, 0, 0);
+ tileinfo.set(3, code, 0, 0);
}
/* 256 x 256 bitmap. 4 bits per pixel so every byte encodes 2 pixels */