diff --git a/src/d3d9/d3d9_options.cpp b/src/d3d9/d3d9_options.cpp index e038bf215..a3944d892 100644 --- a/src/d3d9/d3d9_options.cpp +++ b/src/d3d9/d3d9_options.cpp @@ -91,9 +91,7 @@ namespace dxvk { d3d9FloatEmulation = D3D9FloatEmulation::Enabled; } else { bool hasMulz = adapter != nullptr - && adapter->matchesDriver(VK_DRIVER_ID_MESA_RADV, - VK_MAKE_VERSION(21, 99, 99), - 0); + && adapter->matchesDriver(VK_DRIVER_ID_MESA_RADV, 0, 0); d3d9FloatEmulation = hasMulz ? D3D9FloatEmulation::Strict : D3D9FloatEmulation::Enabled; } }