mirror of
https://github.com/minetest/minetest.git
synced 2025-01-07 05:47:29 +01:00
Fix uninitialized SkyboxParams::fog_color
This commit is contained in:
parent
9e198fc22c
commit
166782040e
@ -46,7 +46,7 @@ struct SkyboxParams
|
||||
float body_orbit_tilt { INVALID_SKYBOX_TILT };
|
||||
s16 fog_distance { -1 };
|
||||
float fog_start { -1.0f };
|
||||
video::SColor fog_color; // override, only used if alpha > 0
|
||||
video::SColor fog_color { 0 }; // override, only used if alpha > 0
|
||||
};
|
||||
|
||||
struct SunParams
|
||||
|
Loading…
Reference in New Issue
Block a user