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 +}