summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/quizdna.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/quizdna.cpp')
-rw-r--r--src/mame/video/quizdna.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/quizdna.cpp b/src/mame/video/quizdna.cpp
index 9ed8ad933f1..307aa4e8baf 100644
--- a/src/mame/video/quizdna.cpp
+++ b/src/mame/video/quizdna.cpp
@@ -23,7 +23,7 @@ TILE_GET_INFO_MEMBER(quizdna_state::get_bg_tile_info)
if (code>0x7fff)
code &= 0x83ff;
- SET_TILE_INFO_MEMBER(1, code, col, 0);
+ tileinfo.set(1, code, col, 0);
}
TILE_GET_INFO_MEMBER(quizdna_state::get_fg_tile_info)
@@ -42,7 +42,7 @@ TILE_GET_INFO_MEMBER(quizdna_state::get_fg_tile_info)
col >>= 5;
col = (col & 3) | ((col & 4) << 1);
- SET_TILE_INFO_MEMBER(0, code, col, 0);
+ tileinfo.set(0, code, col, 0);
}