summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/superwng.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/superwng.cpp')
-rw-r--r--src/mame/drivers/superwng.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/superwng.cpp b/src/mame/drivers/superwng.cpp
index f72da263467..c15fd99a512 100644
--- a/src/mame/drivers/superwng.cpp
+++ b/src/mame/drivers/superwng.cpp
@@ -130,7 +130,7 @@ TILE_GET_INFO_MEMBER(superwng_state::get_bg_tile_info)
int flipx=(attr&0x80) ? TILE_FLIPX : 0;
int flipy=(attr&0x80) ? TILE_FLIPY : 0;
- SET_TILE_INFO_MEMBER(0, code, attr & 0xf, flipx|flipy);
+ tileinfo.set(0, code, attr & 0xf, flipx|flipy);
}
TILE_GET_INFO_MEMBER(superwng_state::get_fg_tile_info)
@@ -145,7 +145,7 @@ TILE_GET_INFO_MEMBER(superwng_state::get_fg_tile_info)
int flipx=(attr&0x80) ? TILE_FLIPX : 0;
int flipy=(attr&0x80) ? TILE_FLIPY : 0;
- SET_TILE_INFO_MEMBER(0, code, attr & 0xf, flipx|flipy);
+ tileinfo.set(0, code, attr & 0xf, flipx|flipy);
}
void superwng_state::video_start()