From 759c7c52d527b2749124b7882f9a0ba145fcd6c9 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Mon, 20 Apr 2020 01:07:51 +1000 Subject: [PATCH] GPU: Don't wedge when other commands are in FIFO with polyline Fixes Ridge Racer Type 4. --- src/core/gpu_commands.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/gpu_commands.cpp b/src/core/gpu_commands.cpp index c4448653b..e741f6671 100644 --- a/src/core/gpu_commands.cpp +++ b/src/core/gpu_commands.cpp @@ -94,6 +94,7 @@ void GPU::ExecuteCommands() DispatchRenderCommand(); m_blit_buffer.clear(); EndCommand(); + continue; } } break;