From c32022a8e41f4ffdcd1853e94334c2ccf309dd21 Mon Sep 17 00:00:00 2001 From: Jamie Reece Wilson Date: Fri, 1 Dec 2023 06:20:39 +0000 Subject: [PATCH] [*] eb1ec8b7 (W32oW64 awareness) cont: WinXP regression --- Source/IO/FS/Resources.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/IO/FS/Resources.cpp b/Source/IO/FS/Resources.cpp index a313beee..341f2f6b 100644 --- a/Source/IO/FS/Resources.cpp +++ b/Source/IO/FS/Resources.cpp @@ -127,7 +127,8 @@ namespace Aurora::IO::FS return CSIDL_COMMON_APPDATA; } - if (rfid == FOLDERID_System) + if (rfid == FOLDERID_System || + rfid == FOLDERID_SystemX86) { return CSIDL_SYSTEM; }