From c2d4e3c018051e9a850e9da80431a0ec1c0ca5a8 Mon Sep 17 00:00:00 2001 From: ImJezze Date: Sun, 13 Mar 2016 17:11:08 +0100 Subject: Cleanup (nw) - options are reset to loaded preset when game is closed - changed default values of options to result in no effects activated - init_slider_list() does not returns but sets g_slider_list directly - removed unnecessary oriented_vector_texcoords --- hlsl/bloom.fx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hlsl') diff --git a/hlsl/bloom.fx b/hlsl/bloom.fx index a338ff6211e..c019870d685 100644 --- a/hlsl/bloom.fx +++ b/hlsl/bloom.fx @@ -255,7 +255,7 @@ uniform float2 Level56Weight; uniform float2 Level78Weight; uniform float2 Level9AWeight; -uniform int BloomBlendMode = 0; // 0 addition, 1 darken +uniform int BloomBlendMode = 0; // 0 brighten, 1 darken uniform float BloomScale; uniform float3 BloomOverdrive; @@ -281,7 +281,7 @@ float4 ps_main(PS_INPUT Input) : COLOR float3 blend; - // addition + // brighten if (BloomBlendMode == 0) { texel0 *= Level0Weight; -- cgit v1.2.3