Explorar o código

Merge pull request #1080 from yuriks/linear-heap-base-typo

Kernel: Fix wrong linear heap base on titles using newer kernels
Yuri Kunde Schlesner %!s(int64=11) %!d(string=hai) anos
pai
achega
bac1a6b140
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/core/hle/kernel/process.cpp

+ 1 - 1
src/core/hle/kernel/process.cpp

@@ -129,7 +129,7 @@ void Process::Run(s32 main_thread_priority, u32 stack_size) {
 }
 
 VAddr Process::GetLinearHeapBase() const {
-    return (kernel_version < 0x22C ? Memory::LINEAR_HEAP_VADDR : Memory::NEW_LINEAR_HEAP_SIZE)
+    return (kernel_version < 0x22C ? Memory::LINEAR_HEAP_VADDR : Memory::NEW_LINEAR_HEAP_VADDR)
             + memory_region->base;
 }