fix NFD not being used in the 32-bit Windows build

This commit is contained in:
tildearrow 2025-05-01 17:39:36 -05:00
parent a0e0d47288
commit 1bc87a1a66

View file

@ -3,9 +3,11 @@
#include <functional> #include <functional>
#include "../pch.h" #include "../pch.h"
#if defined(_WIN64) || defined(__APPLE__) #if defined(_WIN32) || defined(_WIN64) || defined(__APPLE__)
#ifndef SUPPORT_XP
#define USE_NFD #define USE_NFD
#endif #endif
#endif
#ifdef USE_NFD #ifdef USE_NFD
#include <atomic> #include <atomic>