Skip to content
This repository has been archived by the owner on Jan 22, 2021. It is now read-only.

Commit

Permalink
#
Browse files Browse the repository at this point in the history
  • Loading branch information
CorrM committed Jun 9, 2019
1 parent 999000a commit 521e7f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UnrealFinderTool/GObjectsFinder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ std::vector<uintptr_t> GObjectsFinder::Find()
{
std::vector<uintptr_t> ret;
// dwStart = !_memory->Is64Bit ? 0x100000 : static_cast<uintptr_t>(0x7FF00000);
dwEnd = !Utils::MemoryObj->Is64Bit ? 0x7FEFFFFF : static_cast<uintptr_t>(0x7fffffffffff);
dwEnd = !Utils::MemoryObj->Is64Bit ? 0x7FEFFFFF : uintptr_t(0x7fffffffffff);

// Start scan for TArrays
SYSTEM_INFO si = { 0 };
Expand Down

0 comments on commit 521e7f3

Please sign in to comment.