hle: kernel: Move slab heaps to their own container.

This commit is contained in:
bunnei 2021-04-09 23:16:13 -07:00
parent 89edbe8aa2
commit cfa7b92563
2 changed files with 16 additions and 10 deletions

View file

@ -692,6 +692,7 @@ void KernelCore::SetMulticore(bool is_multicore) {
}
void KernelCore::Initialize() {
slab_heap_container = std::make_unique<SlabHeapContainer>();
impl->Initialize(*this);
}