Fixed user level registration of vulkan layers.

Corrected a conditional that incorrectly checked for the inverse of the expected condition.
This commit is contained in:
sebastianpick
2021-02-18 12:31:14 +01:00
committed by Baldur Karlsson
parent c700204037
commit 329b092cfb
+1 -1
View File
@@ -1404,7 +1404,7 @@ public:
return 0;
}
if(m_Info.flags & VulkanLayerFlags::UserRegisterable)
if(!(m_Info.flags & VulkanLayerFlags::UserRegisterable))
{
if(user)
{