mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 01:20:42 +00:00
Fix check that is backwards
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user