Build viewer/editor #13

Manually merged
williamjcm merged 128 commits from mass-viewer into master 2022-03-02 14:50:10 +01:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit bfe9a2c3a8 - Show all commits

View File

@ -355,7 +355,7 @@ auto Profile::getResource(const char* container, Int id) -> Int {
return 0;
}
static auto predicate = [&id](UnrealPropertyBase::ptr& prop){
auto predicate = [&id](UnrealPropertyBase::ptr& prop){
auto res_prop = static_cast<ResourceItemValue*>(prop.get());
return res_prop->id == id;
};