Skip to content

Commit d596b3f

Browse files
committed
Fixed #122.
1 parent 439eb94 commit d596b3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ReClass.NET/Extensions/IntPtrExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public static bool IsNull(this IntPtr ptr)
1818
public static bool MayBeValid(this IntPtr ptr)
1919
{
2020
#if RECLASSNET64
21-
return ptr.InRange((IntPtr)0x10000, (IntPtr)long.MaxValue);
21+
return ptr.IsInRange((IntPtr)0x10000, (IntPtr)long.MaxValue);
2222
#else
2323
return ptr.IsInRange((IntPtr)0x10000, (IntPtr)int.MaxValue);
2424
#endif

0 commit comments

Comments
 (0)