diff options
| author | 2021-03-05 17:08:17 -0800 | |
|---|---|---|
| committer | 2021-03-05 17:08:17 -0800 | |
| commit | a5ab85ac37bbfed739e75ba9c2226b1e6bf1fd37 (patch) | |
| tree | 503cbe4fb52939512f8ee0c976e46e9293de3c4c /src/core/hle/kernel/svc.cpp | |
| parent | Merge pull request #6034 from Morph1984/mbedtls (diff) | |
| download | yuzu-a5ab85ac37bbfed739e75ba9c2226b1e6bf1fd37.tar.gz yuzu-a5ab85ac37bbfed739e75ba9c2226b1e6bf1fd37.tar.xz yuzu-a5ab85ac37bbfed739e75ba9c2226b1e6bf1fd37.zip | |
Revert "core: Switch to unique_ptr for usage of Common::Fiber."
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
| -rw-r--r-- | src/core/hle/kernel/svc.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index d04116115..cc8fa6576 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp | |||
| @@ -2626,7 +2626,8 @@ void Call(Core::System& system, u32 immediate) { | |||
| 2626 | kernel.ExitSVCProfile(); | 2626 | kernel.ExitSVCProfile(); |
| 2627 | 2627 | ||
| 2628 | if (!thread->IsCallingSvc()) { | 2628 | if (!thread->IsCallingSvc()) { |
| 2629 | thread->GetHostContext()->Rewind(); | 2629 | auto* host_context = thread->GetHostContext().get(); |
| 2630 | host_context->Rewind(); | ||
| 2630 | } | 2631 | } |
| 2631 | 2632 | ||
| 2632 | system.EnterDynarmicProfile(); | 2633 | system.EnterDynarmicProfile(); |