diff options
| author | 2020-03-04 20:37:51 -0500 | |
|---|---|---|
| committer | 2020-03-04 20:37:51 -0500 | |
| commit | 1e84d22275e92cee7b243bf4329a53380ce14f3c (patch) | |
| tree | ee9cd2105f8802f81744f17154e767aa518ce867 /src/core/reporter.cpp | |
| parent | Merge pull request #3455 from ReinUsesLisp/attr-scaled (diff) | |
| parent | core: hle: Implement separate A32/A64 SVC interfaces. (diff) | |
| download | yuzu-1e84d22275e92cee7b243bf4329a53380ce14f3c.tar.gz yuzu-1e84d22275e92cee7b243bf4329a53380ce14f3c.tar.xz yuzu-1e84d22275e92cee7b243bf4329a53380ce14f3c.zip | |
Merge pull request #3478 from bunnei/a32
Refactoring to boot A32 games
Diffstat (limited to 'src/core/reporter.cpp')
| -rw-r--r-- | src/core/reporter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/reporter.cpp b/src/core/reporter.cpp index f95eee3b1..85ac81ef7 100644 --- a/src/core/reporter.cpp +++ b/src/core/reporter.cpp | |||
| @@ -111,7 +111,7 @@ json GetProcessorStateDataAuto(Core::System& system) { | |||
| 111 | const auto& vm_manager{process->VMManager()}; | 111 | const auto& vm_manager{process->VMManager()}; |
| 112 | auto& arm{system.CurrentArmInterface()}; | 112 | auto& arm{system.CurrentArmInterface()}; |
| 113 | 113 | ||
| 114 | Core::ARM_Interface::ThreadContext context{}; | 114 | Core::ARM_Interface::ThreadContext64 context{}; |
| 115 | arm.SaveContext(context); | 115 | arm.SaveContext(context); |
| 116 | 116 | ||
| 117 | return GetProcessorStateData(process->Is64BitProcess() ? "AArch64" : "AArch32", | 117 | return GetProcessorStateData(process->Is64BitProcess() ? "AArch64" : "AArch32", |