Skip to content

Commit

Permalink
Merge pull request #4 from fyryNy/master
Browse files Browse the repository at this point in the history
Fix III compatibility
  • Loading branch information
Quidrex committed Mar 9, 2021
2 parents 18e661d + e3352fe commit 823159a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ static bool Peek2(IntPtr handle, IntPtr baseAddress, ref int value)
static bool Peek3(IntPtr handle, IntPtr baseAddress, ref int value)
{
long address = 0;
if (GetLong(handle, (IntPtr)(baseAddress.ToInt64() + 0x4704268), ref address) && address != 0)
if (GetLong(handle, (IntPtr)(baseAddress.ToInt64() + 0x4740178), ref address) && address != 0)
if (GetInt(handle, (IntPtr)(address + 0x98), ref value))
return true;
return false;
Expand Down

0 comments on commit 823159a

Please sign in to comment.