From d78c6275bb5843b9ce9f0385218247e6f72d856b Mon Sep 17 00:00:00 2001 From: Luke Benstead Date: Sat, 3 Dec 2022 14:00:24 +0000 Subject: [PATCH] Increase tri-strip length --- GL/draw.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/GL/draw.c b/GL/draw.c index 654feb4..1d205a1 100644 --- a/GL/draw.c +++ b/GL/draw.c @@ -1034,6 +1034,9 @@ GL_FORCE_INLINE void push(PolyHeader* header, GLboolean multiTextureHeader, Poly CompilePolyHeader(header, &cxt); + /* Force bits 18 and 19 on to switch to 6 triangle strips */ + header->cmd |= 0xC0000; + /* Post-process the vertex list */ /* * This is currently unnecessary. aligned_vector memsets the allocated objects