mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	Use shared_ptr for PageTable
This commit is contained in:
		
							parent
							
								
									e4afa8e512
								
							
						
					
					
						commit
						96432589bd
					
				
					 10 changed files with 34 additions and 33 deletions
				
			
		|  | @ -61,7 +61,7 @@ private: | |||
|     std::unique_ptr<Dynarmic::A32::Jit> MakeJit(); | ||||
| 
 | ||||
|     Dynarmic::A32::Jit* jit = nullptr; | ||||
|     Memory::PageTable* current_page_table = nullptr; | ||||
|     std::map<Memory::PageTable*, std::unique_ptr<Dynarmic::A32::Jit>> jits; | ||||
|     std::shared_ptr<Memory::PageTable> current_page_table = nullptr; | ||||
|     std::map<std::shared_ptr<Memory::PageTable>, std::unique_ptr<Dynarmic::A32::Jit>> jits; | ||||
|     std::shared_ptr<ARMul_State> interpreter_state; | ||||
| }; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue