summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Ville Linde <villelin@mamedev.org>2014-10-12 23:44:53 +0000
committer Ville Linde <villelin@mamedev.org>2014-10-12 23:44:53 +0000
commit54a4c8bddd65d77feb78fea7ec270cbbec57a2b5 (patch)
treeefebda9d08f26f8b9f7374892312599dee38f4e2
parente7c7760bdef910de7e12ef42901278abba0547a9 (diff)
model3.c: fix harley (nw)
-rw-r--r--src/mame/video/model3.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/video/model3.c b/src/mame/video/model3.c
index df96dcebfcc..3c0c564f14f 100644
--- a/src/mame/video/model3.c
+++ b/src/mame/video/model3.c
@@ -1656,8 +1656,11 @@ void model3_state::draw_block(UINT32 address)
pop_matrix_stack();
/* handle the second link */
- link = node[8 - offset];
- process_link(address, link);
+ if ((node[0] & 0x7) != 0x6)
+ {
+ link = node[8 - offset];
+ process_link(address, link);
+ }
}
void model3_state::draw_viewport(int pri, UINT32 address)