I think I looked at that particular problem before, and animepimp is right. `i' was being used as a temporary counter, and was redefined inside of a for loop...ie: for (int i = 0; i < ....).. just changing "int i" to "i" was fine, because the previous code was done using it.
|