mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-14 19:26:57 +02:00
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