12.03.2015, 18:52
for(new h = 0; h < MAX_OWNABLE_HOUSES+1;h++)
If you have your: new HouseInfo[MAX_OWNABLE_HOUSES][e_HouseInfo] like that. The above code would give the array out of index error when getting to last loop, so I suspect that's the issue.
Solution:
for(new h = 0; h < MAX_OWNABLE_HOUSES;h++)
If you have your: new HouseInfo[MAX_OWNABLE_HOUSES][e_HouseInfo] like that. The above code would give the array out of index error when getting to last loop, so I suspect that's the issue.
Solution:
for(new h = 0; h < MAX_OWNABLE_HOUSES;h++)

