summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2022-02-26 17:30:44 -0800
committerGravatar bunnei2022-02-27 18:00:09 -0800
commit16e5954fcb7ed73f34ac7c67124cfa46b7cc59bb (patch)
tree916ea01cd050856c5ae5c541164fde85c67bcfa2 /src
parenthle: kernel: k_memory_manager: Rework for latest kernel behavior. (diff)
downloadyuzu-16e5954fcb7ed73f34ac7c67124cfa46b7cc59bb.tar.gz
yuzu-16e5954fcb7ed73f34ac7c67124cfa46b7cc59bb.tar.xz
yuzu-16e5954fcb7ed73f34ac7c67124cfa46b7cc59bb.zip
hle: kernel: Remove unused pool locals.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/kernel/kernel.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp
index eda67d933..ac69367b8 100644
--- a/src/core/hle/kernel/kernel.cpp
+++ b/src/core/hle/kernel/kernel.cpp
@@ -616,8 +616,6 @@ struct KernelCore::Impl {
616 616
617 void InitializeMemoryLayout() { 617 void InitializeMemoryLayout() {
618 const auto system_pool = memory_layout.GetKernelSystemPoolRegionPhysicalExtents(); 618 const auto system_pool = memory_layout.GetKernelSystemPoolRegionPhysicalExtents();
619 const auto applet_pool = memory_layout.GetKernelAppletPoolRegionPhysicalExtents();
620 const auto application_pool = memory_layout.GetKernelApplicationPoolRegionPhysicalExtents();
621 619
622 // Initialize the memory manager. 620 // Initialize the memory manager.
623 memory_manager = std::make_unique<KMemoryManager>(system); 621 memory_manager = std::make_unique<KMemoryManager>(system);