Fix check that is backwards

This commit is contained in:
baldurk
2016-07-22 18:44:17 +02:00
parent ebb889a7ee
commit 83be5e03bb
@@ -488,7 +488,7 @@ bool WrappedVulkan::Serialise_vkEnumeratePhysicalDevices(Serialiser *localSerial
ObjDisp(instance)->GetPhysicalDeviceQueueFamilyProperties(Unwrap(*pPhysicalDevices),
&queueCount, NULL);
if(queueCount < 16)
if(queueCount > 16)
{
RDCWARN("More than 16 queues");
queueCount = 16;