mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-11 20:55:06 +01:00
Kernel: Fix wrong linear heap base on titles using newer kernels
Typo which sneaked in through review on #1025
This commit is contained in:
parent
2978b5fbc8
commit
0ee3e2c25e
@ -129,7 +129,7 @@ void Process::Run(s32 main_thread_priority, u32 stack_size) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
VAddr Process::GetLinearHeapBase() const {
|
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;
|
+ memory_region->base;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user