VarAction2: DSE now takes into account DSE results from child groups

This commit is contained in:
Jonathan G Rennison
2022-06-07 23:53:32 +01:00
parent 65407210a6
commit 6e398f9cec
2 changed files with 76 additions and 17 deletions

View File

@@ -357,8 +357,10 @@ struct DeterministicSpriteGroupRange {
};
enum DeterministicSpriteGroupFlags : uint8 {
DSGF_NONE = 0,
DSGF_NO_DSE = 1 << 0,
DSGF_NONE = 0,
DSGF_NO_DSE = 1 << 0,
DSGF_DSE_RECURSIVE_DISABLE = 1 << 1,
DSGF_VAR_TRACKING_PENDING = 1 << 2,
};
DECLARE_ENUM_AS_BIT_SET(DeterministicSpriteGroupFlags)