mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Debugger/Callstack: Replace Memory::GetPointer with Memory::IsValidVirtualAddress
This commit is contained in:
		
							parent
							
								
									3873b36db3
								
							
						
					
					
						commit
						b3b3dd7591
					
				
					 1 changed files with 4 additions and 1 deletions
				
			
		|  | @ -37,10 +37,13 @@ void CallstackWidget::OnDebugModeEntered() | |||
|     int counter = 0; | ||||
|     for (u32 addr = 0x10000000; addr >= sp; addr -= 4) | ||||
|     { | ||||
|         if (!Memory::IsValidVirtualAddress(addr)) | ||||
|             break; | ||||
| 
 | ||||
|         const u32 ret_addr = Memory::Read32(addr); | ||||
|         const u32 call_addr = ret_addr - 4; //get call address???
 | ||||
| 
 | ||||
|         if (Memory::GetPointer(call_addr) == nullptr) | ||||
|         if (!Memory::IsValidVirtualAddress(call_addr)) | ||||
|             break; | ||||
| 
 | ||||
|         /* TODO (mattvail) clean me, move to debugger interface */ | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue