mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-11-04 04:34:07 +01:00 
			
		
		
		
	mii/manager: Resolve sign mismatch warnings
Previously the loop termination condition was testing variables of different signedness.
This commit is contained in:
		
							parent
							
								
									3bbf4462db
								
							
						
					
					
						commit
						e54c940abf
					
				@ -104,9 +104,9 @@ MiiInfo ConvertStoreDataToInfo(const MiiStoreData& data) {
 | 
			
		||||
 | 
			
		||||
u16 GenerateCrc16(const void* data, std::size_t size) {
 | 
			
		||||
    s32 crc{};
 | 
			
		||||
    for (int i = 0; i < size; i++) {
 | 
			
		||||
        crc ^= reinterpret_cast<const u8*>(data)[i] << 8;
 | 
			
		||||
        for (int j = 0; j < 8; j++) {
 | 
			
		||||
    for (std::size_t i = 0; i < size; i++) {
 | 
			
		||||
        crc ^= static_cast<const u8*>(data)[i] << 8;
 | 
			
		||||
        for (std::size_t j = 0; j < 8; j++) {
 | 
			
		||||
            crc <<= 1;
 | 
			
		||||
            if ((crc & 0x10000) != 0) {
 | 
			
		||||
                crc = (crc ^ 0x1021) & 0xFFFF;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user