Still working on some VN elements, it's coming together slowly.
This commit is contained in:
@ -18,7 +18,7 @@ void arrayShuffle(size_t size, void *array, int32_t arrayLength) {
|
||||
|
||||
for(x = 0; x < arrayLength-1; x++) {
|
||||
// Select random element from remaining elements.
|
||||
y = u8randRange(x, arrayLength);
|
||||
y = randUint8Range(x, arrayLength);
|
||||
|
||||
itemDest = arrayGet(size, array, y);
|
||||
itemSource = arrayGet(size, array, x);
|
||||
|
Reference in New Issue
Block a user