From f8be3f55dac95bdea37ff387af8b10626c01a9e5 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 19 Apr 2019 14:33:01 -0400 Subject: [PATCH] kernel/svc: Name supervisor call 0x36 This call was added to the SVC handlers in the 8.0.0 kernel, so we can finally give it a name. --- src/core/hle/kernel/svc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 4eeb97bef..4c763b288 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -2290,7 +2290,7 @@ static const FunctionDef SVC_Table[] = { {0x33, SvcWrap, "GetThreadContext"}, {0x34, SvcWrap, "WaitForAddress"}, {0x35, SvcWrap, "SignalToAddress"}, - {0x36, nullptr, "Unknown"}, + {0x36, nullptr, "SynchronizePreemptionState"}, {0x37, nullptr, "Unknown"}, {0x38, nullptr, "Unknown"}, {0x39, nullptr, "Unknown"},