Loadanim Drawanim

Previous topic - Next topic

Kitty Hello

No. ;)


Code (glbasic) Select
dim A[10][10]
dim B[10][10]
AB[] = A[]
REDIM AB[20][10]


for y = 0 to 9
  for x1 = 0 to 9
       AB[x1 + 10][y] = B[x1][y]
  next
next

kin

aha! redim


Sorry to bother you again but i presume map data is being saved like this?

map:
1010
2010
1020

data file:
101020101020


How do I tell glbasic to grab a range of data like the one "2010"?