mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 22:00:05 +00:00 
			
		
		
		
	gdbstub: Get rid of a few signed/unsigned comparisons
Ensures both operands in comparisons are the same signedness.
This commit is contained in:
		
							parent
							
								
									b4524eb70b
								
							
						
					
					
						commit
						b4cdbf3ee8
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		|  | @ -514,7 +514,7 @@ static bool IsDataAvailable() { | |||
|     fd_set fd_socket; | ||||
| 
 | ||||
|     FD_ZERO(&fd_socket); | ||||
|     FD_SET(gdbserver_socket, &fd_socket); | ||||
|     FD_SET(static_cast<u32>(gdbserver_socket), &fd_socket); | ||||
| 
 | ||||
|     struct timeval t; | ||||
|     t.tv_sec = 0; | ||||
|  | @ -564,7 +564,7 @@ static void ReadRegisters() { | |||
| 
 | ||||
|     u8* bufptr = buffer; | ||||
| 
 | ||||
|     for (int reg = 0; reg <= R15_REGISTER; reg++) { | ||||
|     for (u32 reg = 0; reg <= R15_REGISTER; reg++) { | ||||
|         IntToGdbHex(bufptr + reg * CHAR_BIT, Core::CPU().GetReg(reg)); | ||||
|     } | ||||
| 
 | ||||
|  | @ -574,7 +574,7 @@ static void ReadRegisters() { | |||
| 
 | ||||
|     bufptr += CHAR_BIT; | ||||
| 
 | ||||
|     for (int reg = 0; reg <= 31; reg++) { | ||||
|     for (u32 reg = 0; reg <= 31; reg++) { | ||||
|         IntToGdbHex(bufptr + reg * CHAR_BIT, Core::CPU().GetVFPReg(reg)); | ||||
|     } | ||||
| 
 | ||||
|  | @ -618,7 +618,7 @@ static void WriteRegisters() { | |||
|     if (command_buffer[0] != 'G') | ||||
|         return SendReply("E01"); | ||||
| 
 | ||||
|     for (int i = 0, reg = 0; reg <= FPSCR_REGISTER; i++, reg++) { | ||||
|     for (u32 i = 0, reg = 0; reg <= FPSCR_REGISTER; i++, reg++) { | ||||
|         if (reg <= R15_REGISTER) { | ||||
|             Core::CPU().SetReg(reg, GdbHexToInt(buffer_ptr + i * CHAR_BIT)); | ||||
|         } else if (reg == CPSR_REGISTER) { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue