Counting and arthmetic are valuble skills, I hear

include/FluidSCWrapper.hpp
nix
Owen Green 7 years ago
parent c23dfbe359
commit 3260302782

@ -41,8 +41,9 @@ struct FloatControlsIter
float next() float next()
{ {
assert(mCount + 1 < mSize); assert(mCount < mSize && "Boundary error fail horror");
return *mValues[mCount++]; float f = *mValues[mCount++];
return f;
} }
void reset(float** vals) void reset(float** vals)

Loading…
Cancel
Save