From f14cdd48288279c629325ecce1f396551e11f24c Mon Sep 17 00:00:00 2001 From: junglebus <22320807+junglebus@users.noreply.github.com> Date: Fri, 10 Jan 2020 05:18:27 +1100 Subject: [PATCH] Fix InnoSetup warning (#6881) This is to fix the InnoSetup warning during the build "Warning: Constant "pf" has been renamed. Use "commonpf" instead or consider using its "auto" form." https://jrsoftware.github.io/issrc/whatsnew.htm Unsure why DefaultDirName was "Program Files", but have updated it to ProgramData as per all other locations in the installer script --- Installer.iss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Installer.iss b/Installer.iss index 7c61fc808..e5d06fb37 100644 --- a/Installer.iss +++ b/Installer.iss @@ -19,7 +19,7 @@ AppPublisher={#MyAppPublisher} AppPublisherURL={#MyAppURL} AppSupportURL={#MyAppURL} AppUpdatesURL={#MyAppURL} -DefaultDirName={pf}\{#MyAppName} +DefaultDirName={commonappdata}\{#MyAppName} DefaultGroupName={#MyAppName} DisableProgramGroupPage=yes OutputBaseFilename={#MyOutputFilename}