Fix warnings in video_core
This commit is contained in:
parent
ee7cfc71bd
commit
eb5054e6eb
9 changed files with 26 additions and 26 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue