diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-01-01 16:45:24 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-01 16:45:24 -0800 |
commit | 4ce3c1e8b89cd7b8178ee8f360f6a431d3d381e6 (patch) | |
tree | ab13467c634f8d143122c24099da3ea359c7c7b5 /packaging | |
parent | 4c4bc7180339b3ea8a4d956edbea566d9d4775c1 (diff) | |
download | subsurface-4ce3c1e8b89cd7b8178ee8f360f6a431d3d381e6.tar.gz |
Remove the 32/64 bit warning in the Windows installer
We now have perfectly fine 32bit binaries with Qt5 so no more reason to
steer people towards 64bit binaries. Actually, I don't plan to make 64bit
binaries for the next release.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/windows/subsurface.nsi.in | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/packaging/windows/subsurface.nsi.in b/packaging/windows/subsurface.nsi.in index 32c063672..d22061880 100644 --- a/packaging/windows/subsurface.nsi.in +++ b/packaging/windows/subsurface.nsi.in @@ -80,25 +80,6 @@ !insertmacro MUI_LANGUAGE "English" -#-------------------------------- -# Default installer section - -Function .onInit - !include x64.nsh - ${If} 64BITBUILDTOKEN - ${IfNot} ${RunningX64} - MessageBox MB_OK "You cannot install the 64bit version of Subsurface on a 32bit version of Windows" - Abort "Please download the 32bit version of the Subsurface installer" - ${EndIf} - ${Else} - ${If} ${RunningX64} - MessageBox MB_YESNO "Do you really want to install the 32bit version of Subsurface on your 64bit version of Windows?" IDYES goforit - Abort "Please download the 64bit version of the Subsurface installer" - goforit: - ${EndIf} - ${Endif} -FunctionEnd - Section SetShellVarContext all |