From c218f9f2b87f5e30bda24682d3a9debdadf25209 Mon Sep 17 00:00:00 2001 From: Ryan Date: Fri, 5 May 2023 21:25:51 -0500 Subject: [PATCH] Update AutoHotInterception.ahk --- AHK v2/Lib/AutoHotInterception.ahk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/AHK v2/Lib/AutoHotInterception.ahk b/AHK v2/Lib/AutoHotInterception.ahk index 13f502a..af0a801 100644 --- a/AHK v2/Lib/AutoHotInterception.ahk +++ b/AHK v2/Lib/AutoHotInterception.ahk @@ -9,13 +9,13 @@ class AutoHotInterception { if (A_IsCompiled) { dllFile := A_LineFile "\..\Lib\" bitness "\" dllName DirCreate("Lib") - FileInstall("Lib\AutoHotInterception.dll", "Lib\AutoHotInterception.dll") + FileInstall("Lib\AutoHotInterception.dll", "Lib\AutoHotInterception.dll", 1) if (bitness == "x86") { DirCreate("Lib\x86") - FileInstall("Lib\x86\interception.dll", "Lib\x86\interception.dll") + FileInstall("Lib\x86\interception.dll", "Lib\x86\interception.dll", 1) } else { DirCreate("Lib\x64") - FileInstall("Lib\x64\interception.dll", "Lib\x64\interception.dll") + FileInstall("Lib\x64\interception.dll", "Lib\x64\interception.dll", 1) } } else { dllFile := A_LineFile "\..\" bitness "\" dllName @@ -261,4 +261,4 @@ class AutoHotInterception { this.parent.Instance.RemoveContextCallback(this.id) } } -} \ No newline at end of file +}