summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-03-05 08:59:06 +0100
committerGitHub <noreply@github.com>2021-03-05 08:59:06 +0100
commit34a3ee16319ddcfe855249c2fe48b6e7b6441526 (patch)
tree24ff38e19a77b60201ee028b6abb476d82fc16d0 /src/core/hle/kernel/svc.cpp
parentMerge pull request #5989 from ReinUsesLisp/cmdpool (diff)
parentcore: Switch to unique_ptr for usage of Common::Fiber. (diff)
downloadyuzu-34a3ee16319ddcfe855249c2fe48b6e7b6441526.tar
yuzu-34a3ee16319ddcfe855249c2fe48b6e7b6441526.tar.gz
yuzu-34a3ee16319ddcfe855249c2fe48b6e7b6441526.tar.bz2
yuzu-34a3ee16319ddcfe855249c2fe48b6e7b6441526.tar.lz
yuzu-34a3ee16319ddcfe855249c2fe48b6e7b6441526.tar.xz
yuzu-34a3ee16319ddcfe855249c2fe48b6e7b6441526.tar.zst
yuzu-34a3ee16319ddcfe855249c2fe48b6e7b6441526.zip
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r--src/core/hle/kernel/svc.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index cc8fa6576..d04116115 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -2626,8 +2626,7 @@ void Call(Core::System& system, u32 immediate) {
kernel.ExitSVCProfile();
if (!thread->IsCallingSvc()) {
- auto* host_context = thread->GetHostContext().get();
- host_context->Rewind();
+ thread->GetHostContext()->Rewind();
}
system.EnterDynarmicProfile();