mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-02 06:16:17 -04:00
Replace unsigned int, and char with uint and uchar.
This commit is contained in:
@ -5594,7 +5594,7 @@ public:
|
||||
virtual void Func(IteratorHelper<T>& helper, Point<T>& outPoint, QTIsaac<ISAAC_SIZE, ISAAC_INT>& rand) override
|
||||
{
|
||||
T a = helper.m_PrecalcAtanyx;
|
||||
int n = rand.Rand((unsigned int)m_Spread);
|
||||
int n = rand.Rand((uint)m_Spread);
|
||||
|
||||
if (a < 0)
|
||||
n++;
|
||||
|
Reference in New Issue
Block a user