Skip to content

Commit

Permalink
Merge pull request #354 from MELERIX/crapware
Browse files Browse the repository at this point in the history
Removed Adware
  • Loading branch information
project64 committed Jun 5, 2016
2 parents caa4f7e + f0fc530 commit 077780d
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 3,887 deletions.
27 changes: 0 additions & 27 deletions Source/Installer/Installer.iss
@@ -1,8 +1,6 @@
#define BaseDir ExtractFilePath(ExtractFilePath(ExtractFilePath(SourcePath)))
#define AppVersion GetFileVersion(BaseDir + "\Bin\" + Configuration + "\Project64.exe")

#include BaseDir+"\Source\Installer\binno\binno.iss"

[Setup]
AppId={{BEB5FB69-4080-466F-96C4-F15DF271718B}
AppName=Project64
Expand Down Expand Up @@ -48,28 +46,3 @@ Name: "{commonprograms}\Project64 2.2\Project64"; Filename: "{app}\Project64.exe
Name: "{commonprograms}\Project64 2.2\Uninstall Project64 2.2"; Filename: "{uninstallexe}"; Parameters: "/LOG"
Name: "{commonprograms}\Project64 2.2\Support"; Filename: "http://forum.pj64-emu.com"

[Code]
function HaveCommandlineParam (inParam: String): Boolean;
var
LoopVar : Integer;
begin
LoopVar := 1;
Result := false;
while LoopVar <= ParamCount do
begin
if ((ParamStr(LoopVar) = '-' + inParam) or (ParamStr(LoopVar) = '/' + inParam)) then
begin
Result := true;
Break;
end;
LoopVar := LoopVar + 1;
end;
end;
procedure InitializeWizard();
begin
if ((WizardSilent() <> true) and (HaveCommandlineParam('noads') <> true)) then begin
CreateBINNOPage(wpSelectTasks,'pj64emu','pj64emu');
end;
end;
Binary file removed Source/Installer/binno/InnoCallback.dll
Binary file not shown.

0 comments on commit 077780d

Please sign in to comment.