Fix condition
This commit is contained in:
parent
c78b7702d9
commit
d0d3bca2a6
1 changed files with 1 additions and 1 deletions
|
@ -941,7 +941,7 @@ namespace Ryujinx.Graphics.Vulkan
|
|||
|
||||
public bool SupportsRenderPassBarrier(PipelineStageFlags flags)
|
||||
{
|
||||
return !IsMoltenVk || Vendor == Vendor.Qualcomm;
|
||||
return !(IsMoltenVk || Vendor == Vendor.Qualcomm);
|
||||
}
|
||||
|
||||
public unsafe void Dispose()
|
||||
|
|
Loading…
Add table
Reference in a new issue