summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/safarir.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/safarir.cpp')
-rw-r--r--src/mame/drivers/safarir.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/safarir.cpp b/src/mame/drivers/safarir.cpp
index 4d3a199fa41..0fcc1072188 100644
--- a/src/mame/drivers/safarir.cpp
+++ b/src/mame/drivers/safarir.cpp
@@ -184,7 +184,7 @@ TILE_GET_INFO_MEMBER(safarir_state::get_bg_tile_info)
color |= (tile_index & 0xc0) ? 1 : 0;
}
- SET_TILE_INFO_MEMBER(0, code & 0x7f, color, 0);
+ tileinfo.set(0, code & 0x7f, color, 0);
}
@@ -201,7 +201,7 @@ TILE_GET_INFO_MEMBER(safarir_state::get_fg_tile_info)
flags = ((tile_index & 0x1f) >= 0x03) ? 0 : TILE_FORCE_LAYER0;
- SET_TILE_INFO_MEMBER(1, code & 0x7f, color, flags);
+ tileinfo.set(1, code & 0x7f, color, flags);
}