summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/prehisle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/prehisle.cpp')
-rw-r--r--src/mame/video/prehisle.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/prehisle.cpp b/src/mame/video/prehisle.cpp
index b545ff0b02d..0ec2276b67a 100644
--- a/src/mame/video/prehisle.cpp
+++ b/src/mame/video/prehisle.cpp
@@ -65,7 +65,7 @@ TILE_GET_INFO_MEMBER(prehisle_state::get_bg_tile_info)
int const color = attr >> 12;
int const flags = (attr & 0x800) ? TILE_FLIPX : 0;
- SET_TILE_INFO_MEMBER(1, code, color, flags);
+ tileinfo.set(1, code, color, flags);
}
/* tile layout
@@ -80,7 +80,7 @@ TILE_GET_INFO_MEMBER(prehisle_state::get_fg_tile_info)
int const color = attr >> 12;
int const flags = (attr & 0x800) ? TILE_FLIPY : 0;
- SET_TILE_INFO_MEMBER(2, code, color, flags);
+ tileinfo.set(2, code, color, flags);
}
/* tile layout
@@ -93,7 +93,7 @@ TILE_GET_INFO_MEMBER(prehisle_state::get_tx_tile_info)
int const code = attr & 0xfff;
int const color = attr >> 12;
- SET_TILE_INFO_MEMBER(0, code, color, 0);
+ tileinfo.set(0, code, color, 0);
}
void prehisle_state::video_start()