From c6554f1fbc5fd58e64ff64f374c33cf4734343a1 Mon Sep 17 00:00:00 2001 From: NarcolepticK Date: Wed, 27 Jun 2018 04:01:35 -0400 Subject: [PATCH] service/gsp: Fixed typo in FlushDataCache IPC::RequestParser creation --- 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 112a07195..d52339b7c 100644 --- a/src/core/hle/service/gsp/gsp_gpu.cpp +++ b/src/core/hle/service/gsp/gsp_gpu.cpp @@ -309,7 +309,7 @@ void GSP_GPU::SetBufferSwap(Kernel::HLERequestContext& ctx) { } void GSP_GPU::FlushDataCache(Kernel::HLERequestContext& ctx) { - IPC::RequestParser rp(ctx, 0x9, 2, 2); + IPC::RequestParser rp(ctx, 0x8, 2, 2); u32 address = rp.Pop(); u32 size = rp.Pop(); auto process = rp.PopObject();