From d6ac295d18ce22d12d798b0faa3288ba31f2cdc4 Mon Sep 17 00:00:00 2001 From: Luke Benstead Date: Tue, 19 Mar 2024 08:14:38 +0000 Subject: [PATCH] Fix more potential freezes --- GL/platforms/sh4.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/GL/platforms/sh4.c b/GL/platforms/sh4.c index dbf4c08..f8a79d5 100644 --- a/GL/platforms/sh4.c +++ b/GL/platforms/sh4.c @@ -338,7 +338,7 @@ void SceneListSubmit(Vertex* v2, int n) { _glPushHeaderOrVertex(c); _glPerspectiveDivideVertex(b, h); - _glPushHeaderOrVertex(b); + QUEUE_VERTEX(b); } break; case 11: @@ -370,7 +370,8 @@ void SceneListSubmit(Vertex* v2, int n) { _glPerspectiveDivideVertex(a, h); _glPushHeaderOrVertex(c); - _glPushHeaderOrVertex(a); + + QUEUE_VERTEX(a); } break; case 12: