Installer: Minor cleanup
authorMark Young <marky@lunarg.com>
Fri, 15 Jan 2016 23:01:46 +0000 (16:01 -0700)
committerMark Young <marky@lunarg.com>
Mon, 25 Jan 2016 23:04:01 +0000 (16:04 -0700)
Modified size and added a clearer comment.

windowsRuntimeInstaller/InstallerRT.nsi

index 7c842cf..94adb6d 100644 (file)
@@ -45,7 +45,7 @@
 # doing a "Properties" on the install directory. Add to this the size of the
 # files installed to C:\Windows\System32. And then add a little bit more.
 # The units are 1K bytes.
-!define ESTIMATEDSIZE "340"
+!define ESTIMATEDSIZE "500"
 
 # Set the icon
 !define ICOFILE "Vulkan.ico"
@@ -192,7 +192,7 @@ UninstPage instFiles
 # Start default section
 Section
 
-    # If running on a 64-bit OS machine
+    # If running on a 64-bit OS machine, disable registry re-direct since we're running as a 32-bit executable.
     ${If} ${RunningX64}
             
         ${DisableX64FSRedirection}
@@ -319,7 +319,7 @@ SectionEnd
 # Uninstaller section start
 Section "uninstall"
 
-    # If running on a 64-bit OS machine
+    # If running on a 64-bit OS machine, disable registry re-direct since we're running as a 32-bit executable.
     ${If} ${RunningX64}
 
         ${DisableX64FSRedirection}