From 9f793e8a7992c5fa86c28ad4d79c7c46b17c5972 Mon Sep 17 00:00:00 2001 From: Collecting Date: Fri, 26 Dec 2025 18:26:20 +0000 Subject: [PATCH] fix: Clang Compilation Errors Signed-off-by: Collecting --- src/core/hle/kernel/k_thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/kernel/k_thread.h b/src/core/hle/kernel/k_thread.h index e928cfebc..62762531a 100644 --- a/src/core/hle/kernel/k_thread.h +++ b/src/core/hle/kernel/k_thread.h @@ -539,7 +539,7 @@ public: } void ClearDpc(DpcFlag flag) { - this->GetStackParameters().dpc_flags &= ~static_cast(flag); + this->GetStackParameters().dpc_flags &= static_cast(~static_cast(flag)); } u8 GetDpc() const {