| Posted: 03:40pm 03 Mar 2022 |
Copy link to clipboard |
 Print this post |
|
I am sure this has been covered before, but thebackshed's search function keeps timing out when I try to find it in the forum.
I am trying to test the SPRITE LOADARRAY call on my CMM2 Gen 2 box that is running version 5.07.00 firmware. When I run this simple code, I get an "invalid variable" error on the line where I do the SPRITE LOADARRAY.
option base 1
dim c%(4, 2)
for i% = 1 to 4 for j% = 1 to 2 c%(i%, j%) = &H0ffffff next j% next i%
sprite loadarray #1, 4, 2, c%()
cls sprite show #1, 100, 100 end
Any clues? Thanks! -Bill |