diff --git a/Memory/memory.cs b/Memory/memory.cs index 7c5d5d0..83303f2 100644 --- a/Memory/memory.cs +++ b/Memory/memory.cs @@ -854,7 +854,7 @@ public long ReadLong(string code, string file = "") theCode = GetCode(code, file); - if (ReadProcessMemory(pHandle, theCode, memory, (UIntPtr)16, IntPtr.Zero)) + if (ReadProcessMemory(pHandle, theCode, memory, (UIntPtr)8, IntPtr.Zero)) return BitConverter.ToInt64(memory, 0); else return 0;