mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 02:56:31 +02:00
attempt to fix warning
This commit is contained in:
parent
e76ffb2ecb
commit
be8994f3a3
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ public:
|
||||||
|
|
||||||
_runningSum = 0;
|
_runningSum = 0;
|
||||||
_index = 0;
|
_index = 0;
|
||||||
_indexMask = (1 << _randomRows) - 1;
|
_indexMask = ((uint16_t)1 << _randomRows) - 1;
|
||||||
_scale = 1.0f / ((_randomRows + 1) * (1 << (_randomBits - 1)));
|
_scale = 1.0f / ((_randomRows + 1) * (1 << (_randomBits - 1)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue