From d465617c0163c94feebe5cb0c5078b97078c7fb4 Mon Sep 17 00:00:00 2001 From: narknon <73571427+narknon@users.noreply.github.com> Date: Thu, 14 Nov 2024 13:49:58 -0500 Subject: [PATCH] Add build configuration for <= 4.21 FName 8 alignment --- tools/xmakescripts/rules/build_rules.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/xmakescripts/rules/build_rules.lua b/tools/xmakescripts/rules/build_rules.lua index 6583ed556..c13d6b1bd 100644 --- a/tools/xmakescripts/rules/build_rules.lua +++ b/tools/xmakescripts/rules/build_rules.lua @@ -15,6 +15,12 @@ local TARGET_TYPES = { "WITH_CASE_PRESERVING_NAME", table.unpack(gameDefines) } + }, + ["LessEqual421"] = { + ["defines"] = { + "FNAME_ALIGN8", + table.unpack(gameDefines) + } } }