Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Duplicating maps
#3
Spodi Wrote:
Code:
For i = 1 to LastMap Step 2
   Map(i) = Map(i+1)
Next i

Wouldn't it be:

Code:
For i = 1 to LastMap Step 2
   Map(i + 1) = Map(i)
Next i

?
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)