mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2025-08-06 11:22:33 -07:00
Fix warnings in video_core
This commit is contained in:
@@ -225,7 +225,7 @@ union SwizzlePattern {
|
||||
}
|
||||
|
||||
bool DestComponentEnabled(int i) const {
|
||||
return (dest_mask & (0x8 >> i));
|
||||
return (dest_mask & (0x8 >> i)) != 0;
|
||||
}
|
||||
|
||||
std::string SelectorToString(bool src2) const {
|
||||
|
Reference in New Issue
Block a user