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>
This commit is contained in:
Dirk Hohndel 2015-01-01 16:45:24 -08:00
parent 4c4bc71803
commit 4ce3c1e8b8

View file

@ -80,25 +80,6 @@
!insertmacro MUI_LANGUAGE "English" !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 Section
SetShellVarContext all SetShellVarContext all