Browse Source

Kernel: Fix wrong linear heap base on titles using newer kernels

Typo which sneaked in through review on #1025
nce_cpp
Yuri Kunde Schlesner 10 years ago
parent
commit
6bef26d764
  1. 2
      src/core/hle/kernel/process.cpp

2
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;
}

Loading…
Cancel
Save