Quote:
Originally Posted by Charmy
although it worked i still don't understand why the first error occured was it just that i was defined incorrectly?
|
'i' is quite a common variable name for counters and the like, but once a name has been defined within a scope it cant be redefined. So for example you cant have it as a string then immediately redefine it as an int. This also included defining it as the same thing again. Somewhere in that code block, i had been set up as a variable, then in this new release someone had dropped in a chunk that used a 'new' i. So changing every instance of one of the 'i's to another name fixes that issue.
Luke