Skip to content

Commit

Permalink
Add Uninstall Notification
Browse files Browse the repository at this point in the history
  • Loading branch information
SE2Dev committed Mar 16, 2019
1 parent a26d23a commit 5e00a10
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions installer/LinkerMod.iss
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,15 @@ begin
end;
end;
// Notify the user that they need to validate their mod tools installation
// before they can use the mod tools again
procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);
begin
if CurUninstallStep = usPostUninstall then begin
MsgBox('Please validate the integrity of your Mod Tools installation via Steam.', mbInformation, MB_OK);
end
end;
function GetProgressHandle(Param: String): String;
begin
Result := Format('%d', [Console.Handle]);
Expand Down

0 comments on commit 5e00a10

Please sign in to comment.