Quote Originally Posted by Eric View Post
You have an array of array, maybe that isn't supported?

Code:
  LevelRow   = array of GameTile;
  LevelLayer = array of LevelRow;
you could try changing it to a fixed-size array, or a single-dimensional array, and then access it by LevelLayer[y*nbColumns+x] ?
LOL! By Jove...you are right, that IS a multi dimensional array...I will change it to 1d and see if it works then

EDIT: That worked, thanks Eric!!