diff --git a/rpcs3/Emu/RSX/VK/vkutils/device.cpp b/rpcs3/Emu/RSX/VK/vkutils/device.cpp index ff3fd07e2..1dddbc7fe 100644 --- a/rpcs3/Emu/RSX/VK/vkutils/device.cpp +++ b/rpcs3/Emu/RSX/VK/vkutils/device.cpp @@ -561,7 +561,7 @@ namespace vk enabled_features.fullDrawIndexUint32 = VK_TRUE; enabled_features.independentBlend = ensure(pgpu->features.independentBlend, "independentBlend is unsupported"); enabled_features.logicOp = VK_TRUE; - enabled_features.depthClamp = ensure(pgpu->features.depthClamp, "depthClamp is unsupported"); + enabled_features.depthClamp = pgpu->features.depthClamp; enabled_features.depthBounds = VK_TRUE; enabled_features.wideLines = VK_TRUE; enabled_features.largePoints = VK_TRUE;