summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/ksayakyu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/ksayakyu.cpp')
-rw-r--r--src/mame/video/ksayakyu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/ksayakyu.cpp b/src/mame/video/ksayakyu.cpp
index c900e78ce66..0c95f1e69f1 100644
--- a/src/mame/video/ksayakyu.cpp
+++ b/src/mame/video/ksayakyu.cpp
@@ -51,7 +51,7 @@ TILE_GET_INFO_MEMBER(ksayakyu_state::get_ksayakyu_tile_info)
int code = memregion("user1")->base()[tile_index];
int attr = memregion("user1")->base()[tile_index + 0x2000];
code += (attr & 3) << 8;
- SET_TILE_INFO_MEMBER(1, code, ((attr >> 2) & 0x0f) * 2, (attr & 0x80) ? TILE_FLIPX : 0);
+ tileinfo.set(1, code, ((attr >> 2) & 0x0f) * 2, (attr & 0x80) ? TILE_FLIPX : 0);
}
/*
@@ -69,7 +69,7 @@ TILE_GET_INFO_MEMBER(ksayakyu_state::get_text_tile_info)
code |= (attr & 3) << 8;
- SET_TILE_INFO_MEMBER(0, code, color, flags);
+ tileinfo.set(0, code, color, flags);
}
/*