From 4447a5c9f268d4aff1608478e0ba757b2ef72d2a Mon Sep 17 00:00:00 2001 From: Nikki <48837309+kynex7510@users.noreply.github.com> Date: Sun, 29 Jun 2025 13:09:03 +0200 Subject: [PATCH] [GSP] Set correct stop flag (#1199) --- src/core/hle/service/gsp/gsp_gpu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/gsp/gsp_gpu.cpp b/src/core/hle/service/gsp/gsp_gpu.cpp index 72dce9804..dc33488b4 100644 --- a/src/core/hle/service/gsp/gsp_gpu.cpp +++ b/src/core/hle/service/gsp/gsp_gpu.cpp @@ -444,7 +444,7 @@ void GSP_GPU::TriggerCmdReqQueue(Kernel::HLERequestContext& ctx) { system.perf_stats->EndGPUProcessing(); if (command.stop) { - command_buffer->should_stop.Assign(1); + command_buffer->status.Assign(CommandBuffer::STATUS_STOPPED); } }