Navigation Menu

Skip to content

Commit

Permalink
Temporarily remove fatal error when loader patching fails (#1521)
Browse files Browse the repository at this point in the history
  • Loading branch information
ccw808 committed Jun 15, 2020
1 parent 8a458c5 commit 0e5f579
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Client/loader/CInstallManager.cpp
Expand Up @@ -579,8 +579,12 @@ SString CInstallManager::_ProcessGtaVersionCheck()
AddReportLog(5053, SString("_ProcessGtaVersionCheck: Incorrect file '%s'", *strPatchBase));
SString strMessage(_("MTA:SA cannot continue because the following files are incorrect:"));
strMessage += "\n\n" + strPatchBase;
#ifdef TO_DO
BrowseToSolution("gengta_pakfiles", ASK_GO_ONLINE, strMessage);
return "quit";
#else
return "ok";
#endif
}

// Backup current gta_sa.exe
Expand Down Expand Up @@ -608,8 +612,12 @@ SString CInstallManager::_ProcessGtaVersionCheck()
SString strMessage(_("MTA:SA cannot continue because the following files are incorrect:"));
strMessage += "\n\n" + strGtaExe;
strMessage += "\n\n" + _("Error") + SString(" %d", result);
#ifdef TO_DO
BrowseToSolution(SString("gengta_error&code=%d", result), ASK_GO_ONLINE, strMessage);
return "quit";
#else
return "ok";
#endif
}
}

Expand Down

0 comments on commit 0e5f579

Please sign in to comment.