04-09-2025, 04:21 AM
Line 16 is the issue.
Animate(frames&())
You can't pass an array to a sub via parenthesis like that. Change the line to:
Animate frames&()
OR change it to:
CALL Animate(frames&())
Animate(frames&())
You can't pass an array to a sub via parenthesis like that. Change the line to:
Animate frames&()
OR change it to:
CALL Animate(frames&())

