Compile Error: Unable to convert from 'Byte Array'

BlitzMax Forums/BlitzMax Programming/Compile Error: Unable to convert from 'Byte Array'

Pineapple(Posted 2010) [#1]
This is crazy, what's going on?

"Compile Error: Unable to convert from 'Byte Array' to 'Byte Array'"

Here's the definition of grid.
Global grid@[128,64]

Here's where I get the error.
Local fut@[]=grid


GfK(Posted 2010) [#2]
Looks like you're trying to convert a 2D array to a 1D array.

Try Local fut@[,] = grid


Pineapple(Posted 2010) [#3]
Yeah, I just spotted that myself. >.<