We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b99d90 commit 5a1975aCopy full SHA for 5a1975a
minetest.conf.example
@@ -116,7 +116,7 @@
116
# Disable for speed or for different looks.
117
#smooth_lighting = true
118
# Adjust the gamma encoding for the light tables. Valid values are in the range
119
-# 1.1 to 3.0 (inclusive); lower numbers are brighter. This setting is for the
+# 1.0 to 3.0 (inclusive); lower numbers are brighter. This setting is for the
120
# client only and is ignored by the server
121
#display_gamma = 1.8
122
# Path to texture directory. All textures are first searched from here.
src/light.cpp
@@ -88,7 +88,7 @@ void set_light_table(float gamma)
88
0
89
};
90
91
- gamma = rangelim(gamma, 1.1, 3.0);
+ gamma = rangelim(gamma, 1.0, 3.0);
92
93
float brightness = brightness_step;
94
0 commit comments