mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-10-30 23:49:01 -05:00 
			
		
		
		
	Reserve enough space in the vector that holds the linear heap memory to prevent relocations of the backing memory when growing too much. Closes #1790
This commit is contained in:
		| @@ -55,6 +55,9 @@ void MemoryInit(u32 mem_type) { | ||||
|         memory_regions[i].size = memory_region_sizes[mem_type][i]; | ||||
|         memory_regions[i].used = 0; | ||||
|         memory_regions[i].linear_heap_memory = std::make_shared<std::vector<u8>>(); | ||||
|         // Reserve enough space for this region of FCRAM. | ||||
|         // We do not want this block of memory to be relocated when allocating from it. | ||||
|         memory_regions[i].linear_heap_memory->reserve(memory_regions[i].size); | ||||
|  | ||||
|         base += memory_regions[i].size; | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Subv
					Subv