1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-13 08:35:20 +02:00

Increase upper limit of display_gamma to 10 (#8618)

This commit is contained in:
ANAND
2019-06-27 08:34:12 +05:30
committed by Paramat
parent 429a989648
commit 91d244c522
2 changed files with 2 additions and 2 deletions

View File

@@ -66,7 +66,7 @@ void set_light_table(float gamma)
params.center = g_settings->getFloat("lighting_boost_center");
params.sigma = g_settings->getFloat("lighting_boost_spread");
// Gamma correction
params.gamma = rangelim(gamma, 0.5f, 3.0f);
params.gamma = rangelim(gamma, 0.5f, 10.0f);
// Boundary values should be fixed
light_LUT[0] = 0;