diff options
author | Mai <mathew1800@gmail.com> | 2022-06-14 21:07:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-14 21:07:47 -0400 |
commit | c9de5474bfb7543a01337b73c33c4bf3b76e276e (patch) | |
tree | 7f9899bf3621fd4be5d7ef224a4c1f113aa2862e /src/core/hle/kernel | |
parent | c6e7ca562ac4c8957d64f7d9161aa53ca43a96ff (diff) | |
parent | 20eab9fed9435ecf4d222cefc4487fc8a2f81fe3 (diff) |
Merge pull request #8462 from liamwhite/dynarmic-profile
core: centralize profile scope for Dynarmic
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r-- | src/core/hle/kernel/svc.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 584fa5b1c..9956f2b51 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -2982,7 +2982,6 @@ static const FunctionDef* GetSVCInfo64(u32 func_num) { } void Call(Core::System& system, u32 immediate) { - system.ExitDynarmicProfile(); auto& kernel = system.Kernel(); kernel.EnterSVCProfile(); @@ -3007,8 +3006,6 @@ void Call(Core::System& system, u32 immediate) { auto* host_context = thread->GetHostContext().get(); host_context->Rewind(); } - - system.EnterDynarmicProfile(); } } // namespace Kernel::Svc |