diff options
| author | 2014-10-12 23:44:53 +0000 | |
|---|---|---|
| committer | 2014-10-12 23:44:53 +0000 | |
| commit | 54a4c8bddd65d77feb78fea7ec270cbbec57a2b5 (patch) | |
| tree | efebda9d08f26f8b9f7374892312599dee38f4e2 | |
| parent | e7c7760bdef910de7e12ef42901278abba0547a9 (diff) | |
model3.c: fix harley (nw)
| -rw-r--r-- | src/mame/video/model3.c | 7 |
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) |
