You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
std::cout << "Nonstandard GTA file: " << fileList[i].szFilename << std::endl; // output any messed up file file
66
+
std::cout << "Missing GTA file: " << fileList[i].szFilename << std::endl; // output any messed up file
68
67
bQuit = true; // we need to quit since the user's GTA install is probably screwed up
69
68
}
69
+
std::cout << szFilename << std::endl;
70
+
printf ( "Checking %i out of %i...\r", i, ( sizeof ( fileList ) / sizeof ( fileList[0] ) ) );
71
+
fflush ( stdout );
70
72
}
73
+
std::cout << std::endl;
71
74
if ( bQuit )
72
75
{
73
-
std::cout << "Your Grand Theft Auto installation is unclean." << std::endl << "Please reinstall GTA and see if MTA works then." << std::endl;
76
+
std::cout << "Your Grand Theft Auto installation is missing one or more files." << std::endl << "Please reinstall GTA and see if MTA works then." << std::endl;
74
77
Cleanup ( true ); // clean up any temporary files that might have been created, along with the MTADiag log
0 commit comments