Hi everyone, when compiling my program, it works, but something is going wrong.
Whenever it gets to a certain section in my program, it skips the goto command.
1 2 3 4 5 6 7 8
cout << "Checking for updates...";
string line;
ifstream myfile ("ver.axup");
getline (myfile,line);
if (line==ver)
{
goto start;
}