summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-08-30 03:04:27 -0400
committer AJR <ajrhacker@users.noreply.github.com>2017-08-30 03:05:09 -0400
commit4623244dab7cf03ba858a8df9a28d9446d27363f (patch)
tree83a76922b8729710f6920e236419afcc33b39215
parentb3f7173aabb51208f7c9aec8a9098dcc41dd4ccf (diff)
wallc.cpp: Revert accidentally committed part of hack that broke wallc itself (nw)
-rw-r--r--src/mame/drivers/wallc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/wallc.cpp b/src/mame/drivers/wallc.cpp
index 77d9a68f5ff..e776f51ec97 100644
--- a/src/mame/drivers/wallc.cpp
+++ b/src/mame/drivers/wallc.cpp
@@ -207,14 +207,14 @@ WRITE8_MEMBER(wallc_state::videoram_w)
TILE_GET_INFO_MEMBER(wallc_state::get_bg_tile_info)
{
- SET_TILE_INFO_MEMBER(0, m_videoram[tile_index] + ((tile_index & 0x1f) >= 0x08 && (tile_index & 0x1f) < 0x10 ? 0 : 0x100), 1, 0);
+ SET_TILE_INFO_MEMBER(0, m_videoram[tile_index] | 0x100, 1, 0);
}
TILE_GET_INFO_MEMBER(wallc_state::get_bg_tile_info_unkitpkr)
{
int code = m_videoram[tile_index];
- // hack to display cards
+ // hack to display cards (TODO: what determines tile banking?)
if ((tile_index & 0x1f) < 0x08 || (tile_index & 0x1f) >= 0x10)
code |= 0x100;