mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Silence GCC warning in mapblock_mesh
Fixes following warning: warning: ‘waving’ may be used uninitialized in this function [-Wmaybe-uninitialized]
This commit is contained in:
parent
212a1123e0
commit
5311a27523
1 changed files with 1 additions and 1 deletions
|
@ -888,7 +888,7 @@ static void updateFastFaceRow(
|
|||
v3s16 p_corrected;
|
||||
v3s16 face_dir_corrected;
|
||||
u16 lights[4] = {0, 0, 0, 0};
|
||||
u8 waving;
|
||||
u8 waving = 0;
|
||||
TileSpec tile;
|
||||
|
||||
// Get info of first tile
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue