From 7158f3094013d08f746b6102d2f319c4b74ceb76 Mon Sep 17 00:00:00 2001 From: Hydreigon <42880982+Hydreigon223@users.noreply.github.com> Date: Sat, 24 Oct 2020 17:55:17 -0500 Subject: k001005.cpp: Add missing command (#7388) Added a missing command only used in jetwave's "How to Control" screen. This screen would show some model of the jetski in turning the handlebars and leaning on the jetski for controls. This fixes an issue where not only the model(s) wouldn't be present but the game would slow down complaining about an unknown polygon command. --- src/mame/video/k001005.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/video/k001005.cpp b/src/mame/video/k001005.cpp index b0477c51b21..b4f5124a91a 100644 --- a/src/mame/video/k001005.cpp +++ b/src/mame/video/k001005.cpp @@ -782,7 +782,7 @@ void k001005_renderer::render_polygons() render_triangle(visarea, rd_scan_tex2d, 5, v[2], v[3], v[0]); } } - else if (cmd == 0x80000121 || cmd == 0x80000126) + else if (cmd == 0x80000106 || cmd == 0x80000121 || cmd == 0x80000126) { // no texture, color gouraud, Z -- cgit v1.2.3