Still working on some VN elements, it's coming together slowly.

This commit is contained in:
2021-07-26 09:55:09 -07:00
parent f738f9b83d
commit 31f61cac69
14 changed files with 359 additions and 61 deletions

View File

@ -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);