diff options
| author | 2020-04-28 21:38:02 -0400 | |
|---|---|---|
| committer | 2020-04-28 21:38:02 -0400 | |
| commit | 5cb531b6cf37ca28b5ed6226c8a5d14e3a8fd537 (patch) | |
| tree | 8cbc182d51d517e71841f9a84ffe84934680807a /src/core/hle/kernel | |
| parent | Merge pull request #3784 from ReinUsesLisp/shader-memory-util (diff) | |
| parent | physical_core: Make use of std::make_unique instead of std::make_shared in ctor (diff) | |
| download | yuzu-5cb531b6cf37ca28b5ed6226c8a5d14e3a8fd537.tar.gz yuzu-5cb531b6cf37ca28b5ed6226c8a5d14e3a8fd537.tar.xz yuzu-5cb531b6cf37ca28b5ed6226c8a5d14e3a8fd537.zip | |
Merge pull request #3783 from lioncash/pointer
physical_core: Make use of std::make_unique instead of std::make_shared in ctor
Diffstat (limited to 'src/core/hle/kernel')
| -rw-r--r-- | src/core/hle/kernel/physical_core.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/kernel/physical_core.cpp b/src/core/hle/kernel/physical_core.cpp index aa2787467..a15011076 100644 --- a/src/core/hle/kernel/physical_core.cpp +++ b/src/core/hle/kernel/physical_core.cpp | |||
| @@ -27,7 +27,9 @@ PhysicalCore::PhysicalCore(Core::System& system, std::size_t id, | |||
| 27 | std::make_unique<Core::ARM_Dynarmic_64>(system, exclusive_monitor, core_index); | 27 | std::make_unique<Core::ARM_Dynarmic_64>(system, exclusive_monitor, core_index); |
| 28 | 28 | ||
| 29 | #else | 29 | #else |
| 30 | arm_interface = std::make_shared<Core::ARM_Unicorn>(system); | 30 | using Core::ARM_Unicorn; |
| 31 | arm_interface_32 = std::make_unique<ARM_Unicorn>(system, ARM_Unicorn::Arch::AArch32); | ||
| 32 | arm_interface_64 = std::make_unique<ARM_Unicorn>(system, ARM_Unicorn::Arch::AArch64); | ||
| 31 | LOG_WARNING(Core, "CPU JIT requested, but Dynarmic not available"); | 33 | LOG_WARNING(Core, "CPU JIT requested, but Dynarmic not available"); |
| 32 | #endif | 34 | #endif |
| 33 | 35 | ||