Skip to content

Commit

Permalink
added patch that got quickpatched on main branch, and finally resolve…
Browse files Browse the repository at this point in the history
…d the basictype package issue, it was https://stackoverflow.com/a/31165210 wit a lot of ideas i finally got it to work
  • Loading branch information
Spuckwaffel committed Sep 19, 2023
1 parent c9397d4 commit 7539b6f
Show file tree
Hide file tree
Showing 4 changed files with 83 additions and 81 deletions.
2 changes: 1 addition & 1 deletion UEDumper/Engine/Core/Core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ bool EngineCore::generateFunctions(const UStruct* object, std::vector<EngineStru
//in every version we have to go through the children to
for (auto fieldChild = object->getChildren(); fieldChild; fieldChild = fieldChild->getNext())
{
if (fieldChild || !fieldChild->IsA<UFunction>())
if (!fieldChild || !fieldChild->IsA<UFunction>())
continue;


Expand Down
2 changes: 1 addition & 1 deletion UEDumper/Engine/Userdefined/StructDefinitions.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ inline void addStructs()
Fname.inherited = false;
int FnameOffset = 0;
//of course we can also use defines, just be careful
Fname.cookedMembers = std::vector<EngineStructs::Member>{
Fname.definedMembers = std::vector<EngineStructs::Member>{
{{false, PropertyType::IntProperty, "int"}, "ComparisonIndex", 0, 4},
#if UE_VERSION >= UE_5_01
#if !UE_FNAME_OUTLINE_NUMBER
Expand Down
Loading

0 comments on commit 7539b6f

Please sign in to comment.