Drake7707 Posted June 8, 2006 Report Posted June 8, 2006 its because the variable i2 isn't properly initialized, the code jumps to another point before initializing i2 (spaghetti code >.<)
Witchie NL Posted June 10, 2006 Author Report Posted June 10, 2006 pff just put the code that uses i2 between /* */ fixed anyway. i2 was just used to let me know if there was an invalid entry in the warps.ini file. (Ya notice that soon enough if 1 warppoint doesnt work)
Bak Posted June 14, 2006 Report Posted June 14, 2006 char * strstr(const char *big, const char *little); The strstr() function locates the first occurrence of the null-terminated string little in the null-terminated string big. If little is an empty string, big is returned; if little occurs nowhere in big, NULL is returned; otherwise a pointer to the first character of the first occurrence of little is returned.
Recommended Posts