Thread: 5.7 DR2
View Single Post
  #5  
Old 04-26-2004, 03:33 PM
m0oni9
Hill Giant
 
Join Date: Dec 2003
Posts: 166
Default

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.
Reply With Quote