diff options
| author | 2020-03-01 23:46:10 -0500 | |
|---|---|---|
| committer | 2020-03-02 21:51:57 -0500 | |
| commit | c083ea7d7846ee40cfc889ed1d415f73ec78364c (patch) | |
| tree | c58a597921953ad17f5b233c7e23996f78c2521b /src/core/reporter.cpp | |
| parent | core: loader: Remove check for 32-bit. (diff) | |
| download | yuzu-c083ea7d7846ee40cfc889ed1d415f73ec78364c.tar.gz yuzu-c083ea7d7846ee40cfc889ed1d415f73ec78364c.tar.xz yuzu-c083ea7d7846ee40cfc889ed1d415f73ec78364c.zip | |
core: Implement separate A32/A64 ARM interfaces.
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", |