mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00: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
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -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…
	
	Add table
		Add a link
		
	
		Reference in a new issue