From 54a4c8bddd65d77feb78fea7ec270cbbec57a2b5 Mon Sep 17 00:00:00 2001 From: Ville Linde Date: Sun, 12 Oct 2014 23:44:53 +0000 Subject: [PATCH] model3.c: fix harley (nw) --- src/mame/video/model3.c | 7 +++++-- 1 file 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)