Skip to content

Commit

Permalink
dumspace fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Spuckwaffel committed Nov 16, 2023
1 parent 83b55c4 commit a12dbe4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UEDumper/Resources/Dumpspace/dumpspace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,11 +204,11 @@ namespace Dumpspace
for (int i = 0; i < enu.members.size(); i++)
{
nlohmann::json a;
a[enu.members[i].first] = std::make_tuple(enu.members[i].second, enu.type);
a[enu.members[i].first] = enu.members[i].second;
members.push_back(a);
}
nlohmann::json j;
j[enu.cppName] = members;
j[enu.cppName] = std::make_tuple(members, enu.type);
AddEnum(j);
}
progressDone++;
Expand Down

0 comments on commit a12dbe4

Please sign in to comment.