mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	Merge pull request #6888 from v1993/patch-3
video_core: eliminate constant ternary
This commit is contained in:
		@@ -159,7 +159,7 @@ static_assert(sizeof(TextureHandle) == 4, "TextureHandle has wrong size");
 | 
				
			|||||||
        return {raw, raw};
 | 
					        return {raw, raw};
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
        const Tegra::Texture::TextureHandle handle{raw};
 | 
					        const Tegra::Texture::TextureHandle handle{raw};
 | 
				
			||||||
        return {handle.tic_id, via_header_index ? handle.tic_id : handle.tsc_id};
 | 
					        return {handle.tic_id, handle.tsc_id};
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user