summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/voodoo_gpu_ps.hlsl
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/voodoo_gpu_ps.hlsl')
-rw-r--r--src/devices/video/voodoo_gpu_ps.hlsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/voodoo_gpu_ps.hlsl b/src/devices/video/voodoo_gpu_ps.hlsl
index 46541d9017f..ae237218e36 100644
--- a/src/devices/video/voodoo_gpu_ps.hlsl
+++ b/src/devices/video/voodoo_gpu_ps.hlsl
@@ -468,7 +468,7 @@ float4 ColorCombine(float4 c_other, float4 c_local, Combine_Struct ctrl, float m
dst *= blendFactor;
// truncate TODO: check this
- dst = floor(dst * 255.0f) / 255.0f;
+ dst = floor(dst * 512.0f) / 512.0f;
switch (ctrl.c_add_aclocal) {
case 0: