lotharious
MIS
I current have
int polyline[1024][4];
double vertex[1024][10][2];
I need to change this to
int polyline[2048][4];
double vertex[2048][10][4];
By changing either anything in the vertex I overflow the stack? Wow huh..
I need to allocate the memory for this on the heap, but keep it accessible the way I currently have, Elsewise i will have to go about redoing everything right now into a struct based list which I do not have the timeframe for atm.