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/cb2001.cpp | |
parent | e7b33bd5e22adfc7422c969a0a2b6400c6563394 (diff) |
tilemap: that macro has contributed nothing but obfuscation since we moved to C++
Diffstat (limited to 'src/mame/drivers/cb2001.cpp')
-rw-r--r-- | src/mame/drivers/cb2001.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/cb2001.cpp b/src/mame/drivers/cb2001.cpp index 48dafe86bd0..f480a445781 100644 --- a/src/mame/drivers/cb2001.cpp +++ b/src/mame/drivers/cb2001.cpp @@ -496,7 +496,7 @@ TILE_GET_INFO_MEMBER(cb2001_state::get_cb2001_reel1_tile_info) int colour = 0;//= (cb2001_out_c&0x7) + 8; - SET_TILE_INFO_MEMBER(1, + tileinfo.set(1, code+0x800, colour, 0); @@ -513,7 +513,7 @@ TILE_GET_INFO_MEMBER(cb2001_state::get_cb2001_reel2_tile_info) int colour = 0;//(cb2001_out_c&0x7) + 8; - SET_TILE_INFO_MEMBER(1, + tileinfo.set(1, code+0x800, colour, 0); @@ -530,7 +530,7 @@ TILE_GET_INFO_MEMBER(cb2001_state::get_cb2001_reel3_tile_info) code &=0xff; - SET_TILE_INFO_MEMBER(1, + tileinfo.set(1, code+0x800, colour, 0); |