From 946419cda211f157080e1aac52a6660d9700df0e Mon Sep 17 00:00:00 2001 From: WinterSnowfall Date: Mon, 10 Feb 2025 00:22:50 +0200 Subject: [PATCH] [d3d8] Fix invalid casting in GetRenderState --- src/d3d8/d3d8_device.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/d3d8/d3d8_device.cpp b/src/d3d8/d3d8_device.cpp index e085974ce..3826721bd 100644 --- a/src/d3d8/d3d8_device.cpp +++ b/src/d3d8/d3d8_device.cpp @@ -1661,7 +1661,7 @@ namespace dxvk { // Render States // - // ZBIAS can be an integer from 0 to 1 and needs to be remapped to float + // ZBIAS can be an integer from 0 to 16 and needs to be remapped to float static constexpr float ZBIAS_SCALE = -0.000005f; static constexpr float ZBIAS_SCALE_INV = 1 / ZBIAS_SCALE; @@ -1694,7 +1694,7 @@ namespace dxvk { case D3DRS_ZBIAS: State9 = d3d9::D3DRS_DEPTHBIAS; - Value = bit::cast(float(Value) * ZBIAS_SCALE); + Value = bit::cast(static_cast(Value) * ZBIAS_SCALE); break; case D3DRS_SOFTWAREVERTEXPROCESSING: @@ -1755,9 +1755,9 @@ namespace dxvk { break; case D3DRS_ZBIAS: { - float bias = 0; - HRESULT res = GetD3D9()->GetRenderState(d3d9::D3DRS_DEPTHBIAS, (DWORD*)&bias); - *pValue = bit::cast(bias * ZBIAS_SCALE_INV); + DWORD bias = 0; + HRESULT res = GetD3D9()->GetRenderState(d3d9::D3DRS_DEPTHBIAS, &bias); + *pValue = static_cast(bit::cast(bias) * ZBIAS_SCALE_INV); return res; } break;