Skip to content

Commit

Permalink
Fixes to the InnoSetup script
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Oct 17, 2013
1 parent 1e6aa83 commit ce3d8d1
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions ppsspp.iss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ Source: "README.md"; DestName: "README.txt"; DestDir: "{app}"; Flags: isreadme
Source: "notinstalled.txt"; DestName: "installed.txt"; DestDir: "{app}";
Source: "assets\ppge_atlas.zim"; DestDir: "{app}\assets"
Source: "assets\ui_atlas.zim"; DestDir: "{app}\assets"
Source: "assets\langregion.ini"; DestDir: "{app}\assets"
Source: "assets\Roboto-Condensed.ttf"; DestDir: "{app}\assets"
Source: "assets\shaders\*.*"; DestDir: "{app}\assets\shaders"
Source: "lang\*.ini"; DestDir: "{app}\lang"
Source: "flash0\font\*.*"; DestDir: "{app}\flash0\font"
Source: "redist/vcredist_x86.exe"; DestDir: {tmp}
Expand All @@ -30,12 +33,3 @@ Filename: {app}\PPSSPPWindows.exe; Description: {cm:LaunchProgram,{cm:AppName}};

[Icons]
Name: "{commonprograms}\PPSSPP"; Filename: "{app}\PPSSPPWindows.exe"

[Code]
begin
if (not isUninstaller()) then begin
SaveStringToFile(ExpandFilename('installed.txt'), 'Installed' + #13#10, False);
end
end.

0 comments on commit ce3d8d1

Please sign in to comment.