From 375016353a2fed19b771107a932584c64c566083 Mon Sep 17 00:00:00 2001 From: Exverge Date: Wed, 15 Jul 2026 15:54:53 +0200 Subject: [PATCH] Never going to a touch Windows code again MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I have no idea if this server gives email notifications for commits but if they do I’m very sorry Code should compile and link properly on all platforms now Signed-off-by: Exverge --- src/core/arm/nce/arm_nce.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/arm/nce/arm_nce.h b/src/core/arm/nce/arm_nce.h index 68330d5af8..3663d24d44 100644 --- a/src/core/arm/nce/arm_nce.h +++ b/src/core/arm/nce/arm_nce.h @@ -35,7 +35,7 @@ constexpr pthread_key_t ContextKey = 210; #elif _WIN32 #define ExceptionLevelChangeSignal 0xE0000001 -thread_local bool is_host_fault = false; +inline thread_local bool is_host_fault = false; static const u32 ContextKey = TlsAlloc(); static const u32 NCEStorage = TlsAlloc();