From 395ac388902a810191a2ccecbc5bbe54b3442bbb Mon Sep 17 00:00:00 2001 From: Robin Kertels Date: Wed, 9 Oct 2024 22:29:28 +0200 Subject: [PATCH] [d3d9] Fix fixed function texture mask Fixed function supports 8 textures so we need 8 ones. --- src/d3d9/d3d9_util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d3d9/d3d9_util.h b/src/d3d9/d3d9_util.h index 5f71d8d72..76cd31a7c 100644 --- a/src/d3d9/d3d9_util.h +++ b/src/d3d9/d3d9_util.h @@ -23,7 +23,7 @@ namespace dxvk { }; static constexpr D3D9ShaderMasks FixedFunctionMask = - { 0b1111111, 0b1 }; + { 0b11111111, 0b1 }; struct D3D9BlendState { D3DBLEND Src;