How can I check if a 2d array has data stored in the first dimension or not. I thought checking if it is 0, but that gives me a compile error "array must be indexed (variable "array2d")".
Example:
Code:
new array2d[33][128];
for(new i=0; i<32; i++){if(array2d[i]!=0){// First dimension has no data?}}