From 6b2830b16f437c8e6c1fb12c36de7836559a8b81 Mon Sep 17 00:00:00 2001 From: Richard Stanway Date: Sat, 19 Dec 2020 00:23:32 +0100 Subject: [PATCH] UI/installer: Add additional VS2019 DLL check --- UI/installer/mp-installer.nsi | 1 + 1 file changed, 1 insertion(+) diff --git a/UI/installer/mp-installer.nsi b/UI/installer/mp-installer.nsi index b71db4a4b..c4af1e3d2 100644 --- a/UI/installer/mp-installer.nsi +++ b/UI/installer/mp-installer.nsi @@ -124,6 +124,7 @@ Function PreReqCheck ClearErrors GetDLLVersion "vcruntime140.DLL" $R0 $R1 GetDLLVersion "msvcp140.DLL" $R0 $R1 + GetDLLVersion "msvcp140_1.DLL" $R0 $R1 IfErrors vs2019Missing_32 vs2019OK_32 vs2019Missing_32: MessageBox MB_YESNO|MB_ICONEXCLAMATION "Your system is missing runtime components that ${APPNAME} requires. Would you like to download them?" IDYES vs2019true_32 IDNO vs2019false_32 -- GitLab