From 48cb63757102775e55bb50438bf97ac41e162456 Mon Sep 17 00:00:00 2001 From: ahm3dgg Date: Fri, 9 Jan 2026 03:29:50 +0200 Subject: [PATCH] Workaround win32u only --- src/windows-emulator/syscalls/section.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/windows-emulator/syscalls/section.cpp b/src/windows-emulator/syscalls/section.cpp index 389b7815..b3f2aef5 100644 --- a/src/windows-emulator/syscalls/section.cpp +++ b/src/windows-emulator/syscalls/section.cpp @@ -119,7 +119,7 @@ namespace syscalls } utils::string::to_lower_inplace(filename); - if (is_known_dll && (filename.starts_with(u"win32u.dll")) + if (is_known_dll && (filename.starts_with(u"win32u.dll"))) { return STATUS_OBJECT_NAME_NOT_FOUND; }