mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-29 07:16:33 +00:00
Merge pull request #6502 from lioncash/warn
AbstractFramebuffer: Silence a -Wlogical-op-parentheses warning in ValidateConfig()
This commit is contained in:
commit
dc098fdf08
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ bool AbstractFramebuffer::ValidateConfig(const AbstractTexture* color_attachment
|
||||||
return tex->GetConfig().rendertarget && tex->GetConfig().levels == 1;
|
return tex->GetConfig().rendertarget && tex->GetConfig().levels == 1;
|
||||||
};
|
};
|
||||||
if ((color_attachment && !CheckAttachment(color_attachment)) ||
|
if ((color_attachment && !CheckAttachment(color_attachment)) ||
|
||||||
depth_attachment && !CheckAttachment(depth_attachment))
|
(depth_attachment && !CheckAttachment(depth_attachment)))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue