diff options
author | 2020-03-11 15:47:30 +1100 | |
---|---|---|
committer | 2020-03-11 15:47:30 +1100 | |
commit | 9733f5cf3df1255566dc147540a8d6ceab4adb6d (patch) | |
tree | 637f1e69a2b520771888635337ea4e051d7fa797 /src/mame/drivers/multfish.cpp | |
parent | e7b33bd5e22adfc7422c969a0a2b6400c6563394 (diff) |
tilemap: that macro has contributed nothing but obfuscation since we moved to C++
Diffstat (limited to 'src/mame/drivers/multfish.cpp')
-rw-r--r-- | src/mame/drivers/multfish.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/multfish.cpp b/src/mame/drivers/multfish.cpp index 943a0e83b44..b75b4994ac4 100644 --- a/src/mame/drivers/multfish.cpp +++ b/src/mame/drivers/multfish.cpp @@ -194,7 +194,7 @@ TILE_GET_INFO_MEMBER(igrosoft_gamble_state::get_igrosoft_gamble_tile_info) tileinfo.category = (attr&0x100)>>8; - SET_TILE_INFO_MEMBER(0, + tileinfo.set(0, code&0x1fff, attr&0x7, 0); @@ -204,7 +204,7 @@ TILE_GET_INFO_MEMBER(igrosoft_gamble_state::get_igrosoft_gamble_reel_tile_info) { int code = m_vid[tile_index*2+0x2000] | (m_vid[tile_index*2+0x2001] << 8); - SET_TILE_INFO_MEMBER(0, + tileinfo.set(0, (code&0x1fff)+0x2000, (code>>14)+0x8, 0); |