Skip to content

Commit dd1b09a

Browse files
committed
same shader fix but on the DropShadowScreenspace
1 parent 0526eb7 commit dd1b09a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/funkin/graphics/shaders/DropShadowScreenspace.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ class DropShadowScreenspace extends DropShadowShader
128128

129129
float intensity = dot(col.rgb, vec3(0.3098, 0.6078, 0.0823));
130130

131-
intensity = maskIntensity > 0.0 ? intensity = float(intensity > thr2) : intensity = float(intensity > thr);
131+
intensity = maskIntensity > 0.0 ? float(intensity > thr2) : float(intensity > thr);
132132

133133
return intensity;
134134
}

0 commit comments

Comments
 (0)