From 9220c85e85ad5009014eb60b948502f4afd4d3dc Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Sat, 13 Sep 2025 11:09:58 +1000 Subject: [PATCH] [idd] nsis: fix syntax error in if statements --- idd/installer.nsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/idd/installer.nsi b/idd/installer.nsi index 27724233..e4526cc8 100644 --- a/idd/installer.nsi +++ b/idd/installer.nsi @@ -123,7 +123,7 @@ FunctionEnd !macro CreateDriverRegKey - ${If} ${RunningX64} + ${If} ${RunningX64} == 1 SetRegView 64 ${EndIf} @@ -138,7 +138,7 @@ FunctionEnd !macro RemoveDriverRegKey - ${If} ${RunningX64} + ${If} ${RunningX64} == 1 SetRegView 64 ${EndIf}