From 1bc87a1a6695bd9d959478df8cef2c54bdaf5fd5 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Thu, 1 May 2025 17:39:36 -0500 Subject: [PATCH] fix NFD not being used in the 32-bit Windows build --- src/gui/fileDialog.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gui/fileDialog.h b/src/gui/fileDialog.h index a8361b309..78d04fc26 100644 --- a/src/gui/fileDialog.h +++ b/src/gui/fileDialog.h @@ -3,9 +3,11 @@ #include #include "../pch.h" -#if defined(_WIN64) || defined(__APPLE__) +#if defined(_WIN32) || defined(_WIN64) || defined(__APPLE__) +#ifndef SUPPORT_XP #define USE_NFD #endif +#endif #ifdef USE_NFD #include