From d8f8bd07f9ef632b799b11578cdf53ffab39c159 Mon Sep 17 00:00:00 2001 From: Igor Pissolati Date: Sat, 19 Apr 2025 17:12:27 -0300 Subject: [PATCH] Fix failed check --- src/windows-emulator/syscalls.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/windows-emulator/syscalls.cpp b/src/windows-emulator/syscalls.cpp index 77830139..5e2e9aff 100644 --- a/src/windows-emulator/syscalls.cpp +++ b/src/windows-emulator/syscalls.cpp @@ -651,7 +651,7 @@ namespace syscalls NTSTATUS handle_NtUserGetProcessWindowStation() { - return NULL; + return 0; } }