aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--main.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/main.go b/main.go
index 84c8ebe0..5862d4e3 100644
--- a/main.go
+++ b/main.go
@@ -11,7 +11,6 @@ import (
"fmt"
"log"
"os"
- "runtime"
"strconv"
"strings"
"time"
@@ -68,10 +67,6 @@ func checkForWow64() {
var processMachine, nativeMachine uint16
err := windows.IsWow64Process2(windows.CurrentProcess(), &processMachine, &nativeMachine)
if err == nil {
- if nativeMachine == pe.IMAGE_FILE_MACHINE_ARM64 && runtime.GOARCH == "arm" {
- //TODO: remove this exception when Go supports arm64
- return false, nil
- }
return processMachine != pe.IMAGE_FILE_MACHINE_UNKNOWN, nil
}
if !errors.Is(err, windows.ERROR_PROC_NOT_FOUND) {