mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-14 02:27:21 -07:00
Reduce stack usage during static initialization (#4184)
* Reduce stack usage during static initialization * Implement `ABS` macro for `TWO_ACTOR_PARAMS`
This commit is contained in:
parent
cd7c5ab316
commit
f99993af85
8 changed files with 32 additions and 26 deletions
|
@ -1089,7 +1089,7 @@ bool ShouldShowCheck(RandomizerCheckObject check) {
|
|||
IsVisibleInCheckTracker(check) &&
|
||||
(checkSearch.Filters.Size == 0 ||
|
||||
checkSearch.PassFilter(RandomizerCheckObjects::GetRCAreaName(check.rcArea).c_str()) ||
|
||||
checkSearch.PassFilter(check.rcShortName.c_str()))
|
||||
checkSearch.PassFilter(check.rcShortName))
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue