mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-15 13:55:11 -05:00
Treegen: Improve use of signed vs. unsigned integers
To fix GCC 6.1.1 compilation warning: 'assuming signed overflow does not occur when assuming that (X - c) > X is always false'
This commit is contained in:
parent
7eeb735cab
commit
91f68e7d11
@ -770,9 +770,9 @@ void make_pine_tree(MMVManip &vmanip, v3s16 p0, INodeDefManager *ndef, s32 seed)
|
|||||||
MapNode snownode(c_snow);
|
MapNode snownode(c_snow);
|
||||||
|
|
||||||
PseudoRandom pr(seed);
|
PseudoRandom pr(seed);
|
||||||
s16 trunk_h = pr.range(9, 13);
|
u16 trunk_h = pr.range(9, 13);
|
||||||
v3s16 p1 = p0;
|
v3s16 p1 = p0;
|
||||||
for (s16 ii = 0; ii < trunk_h; ii++) {
|
for (u16 ii = 0; ii < trunk_h; ii++) {
|
||||||
if (vmanip.m_area.contains(p1)) {
|
if (vmanip.m_area.contains(p1)) {
|
||||||
u32 vi = vmanip.m_area.index(p1);
|
u32 vi = vmanip.m_area.index(p1);
|
||||||
vmanip.m_data[vi] = treenode;
|
vmanip.m_data[vi] = treenode;
|
||||||
@ -790,7 +790,7 @@ void make_pine_tree(MMVManip &vmanip, v3s16 p0, INodeDefManager *ndef, s32 seed)
|
|||||||
leaves_d[i] = 0;
|
leaves_d[i] = 0;
|
||||||
|
|
||||||
// Upper branches
|
// Upper branches
|
||||||
s16 dev = 3;
|
u16 dev = 3;
|
||||||
for (s16 yy = -1; yy <= 1; yy++) {
|
for (s16 yy = -1; yy <= 1; yy++) {
|
||||||
for (s16 zz = -dev; zz <= dev; zz++) {
|
for (s16 zz = -dev; zz <= dev; zz++) {
|
||||||
u32 i = leaves_a.index(v3s16(-dev, yy, zz));
|
u32 i = leaves_a.index(v3s16(-dev, yy, zz));
|
||||||
|
Loading…
Reference in New Issue
Block a user