mirror of
https://git.eden-emu.dev/archive/citron
synced 2026-04-11 05:38:49 -04: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