mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	Core : Change variable type
and fix various warnings
This commit is contained in:
		
							parent
							
								
									f7050021de
								
							
						
					
					
						commit
						972dccc3f6
					
				@ -191,7 +191,7 @@ static THREEDSX_Error Load3DSXFile(FileUtil::IOFile& file, u32 base_addr, Shared
 | 
				
			|||||||
                            *pos = (addr);
 | 
					                            *pos = (addr);
 | 
				
			||||||
                            break;
 | 
					                            break;
 | 
				
			||||||
                        case 1:
 | 
					                        case 1:
 | 
				
			||||||
                            *pos = (addr - in_addr);
 | 
					                            *pos = static_cast<u32>(addr - in_addr);
 | 
				
			||||||
                            break;
 | 
					                            break;
 | 
				
			||||||
                        default:
 | 
					                        default:
 | 
				
			||||||
                            break; //this should never happen
 | 
					                            break; //this should never happen
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user