Path is char*Code:do{
for (int i = 0;i <= New->PathNumbers;i++, ActualPath++)
{
if ( strcmp(";", New->Paths) == 0 )
{
ActualPath++;
i++;
break;
}
strcpy( &Path[i], &New->Paths[i] );
}
New->Paths is char*
New->Paths has the string "Game" in it.
Whats wrong with this?
