Skip to content

Commit

Permalink
Update PUBGM.h
Browse files Browse the repository at this point in the history
  • Loading branch information
MJx0 committed Nov 24, 2023
1 parent 376f214 commit a7fa591
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion AndUE4Dumper/source/src/Core/GameProfiles/Games/PUBGM.h
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,9 @@ class PUBGMProfile : public IGameProfile
int32_t in;
uintptr_t out[16];

kMgr.readMem((enc_names - 100) / 3, &in, sizeof(int32_t));
kMgr.readMem(enc_names, &in, sizeof(int32_t));
in = (in - 100) / 3;

kMgr.readMem(enc_names + 8, &out[in - 1], sizeof(uintptr_t));
while (in - 2 >= 0)
{
Expand Down

0 comments on commit a7fa591

Please sign in to comment.