mirror of
https://github.com/minetest/minetest.git
synced 2025-07-04 00:40:24 +02:00
Change lower limit of display_gamma to 1.0 (linear light)
Now matches function comment
This commit is contained in:
@ -88,7 +88,7 @@ void set_light_table(float gamma)
|
||||
0
|
||||
};
|
||||
|
||||
gamma = rangelim(gamma, 1.1, 3.0);
|
||||
gamma = rangelim(gamma, 1.0, 3.0);
|
||||
|
||||
float brightness = brightness_step;
|
||||
|
||||
|
Reference in New Issue
Block a user