From 6ef1f6f456724294ad35477e4b7704469bd873f4 Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Fri, 17 Jul 2020 19:43:50 +0100 Subject: [PATCH] Changed 64-bit Windows installer message to suggest 32-bit installer on a 32-bit system. --- dist/windows/nsis/installer64.nsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/windows/nsis/installer64.nsi b/dist/windows/nsis/installer64.nsi index 85ef7ef317..5aaa5017c0 100644 --- a/dist/windows/nsis/installer64.nsi +++ b/dist/windows/nsis/installer64.nsi @@ -316,7 +316,7 @@ FunctionEnd Function .onInit ${IfNot} ${RunningX64} - MessageBox MB_OK|MB_ICONEXCLAMATION "This installer requires 64-bit Windows.$\n$\nTo use VASSAL ${VERSION} on 32-bit Windows, please install Java 11 or later and download the VASSAL package marked 'other'." + MessageBox MB_OK|MB_ICONEXCLAMATION "This installer requires 64-bit Windows.$\n$\nTo use VASSAL ${VERSION} on 32-bit Windows, please install the 32-bit Windows package." Abort ${EndIf}