Fix warnings in video_core

This commit is contained in:
Lioncash 2014-09-28 11:20:06 -04:00
parent ee7cfc71bd
commit eb5054e6eb
9 changed files with 26 additions and 26 deletions

View file

@ -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 {