diff --git a/src/d3d11/d3d11_device.cpp b/src/d3d11/d3d11_device.cpp index f1a36d6d..2a1bc686 100644 --- a/src/d3d11/d3d11_device.cpp +++ b/src/d3d11/d3d11_device.cpp @@ -1066,8 +1066,7 @@ namespace dxvk { // Other query types are currently unsupported if (pQueryDesc->Query != D3D11_QUERY_OCCLUSION && pQueryDesc->Query != D3D11_QUERY_OCCLUSION_PREDICATE) { - Logger::err(str::format("D3D11Device: Unsupported query type: ", pQueryDesc->Query)); - return E_INVALIDARG; + Logger::warn(str::format("D3D11Device: Unsupported query type: ", pQueryDesc->Query)); } if (ppQuery == nullptr)