diff options
Diffstat (limited to 'src/mame/drivers/panicr.cpp')
-rw-r--r-- | src/mame/drivers/panicr.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/panicr.cpp b/src/mame/drivers/panicr.cpp index 6f5ef7547ab..368322756d9 100644 --- a/src/mame/drivers/panicr.cpp +++ b/src/mame/drivers/panicr.cpp @@ -196,7 +196,7 @@ TILE_GET_INFO_MEMBER(panicr_state::get_bgtile_info) code=memregion("user1")->base()[tile_index]; attr=memregion("user2")->base()[tile_index]; code+=((attr&7)<<8); - SET_TILE_INFO_MEMBER(1, + tileinfo.set(1, code, (attr & 0xf0) >> 4, 0); @@ -211,7 +211,7 @@ TILE_GET_INFO_MEMBER(panicr_state::get_infotile_info_2) code=memregion("user1")->base()[tile_index]; attr=memregion("user2")->base()[tile_index]; code+=((attr&7)<<8); - SET_TILE_INFO_MEMBER(3, + tileinfo.set(3, code, 0, 0); @@ -228,7 +228,7 @@ TILE_GET_INFO_MEMBER(panicr_state::get_txttile_info) tileinfo.group = color; - SET_TILE_INFO_MEMBER(0, + tileinfo.set(0, code + ((attr & 8) << 5), color, 0); |