Skip to content
This repository has been archived by the owner on Oct 19, 2020. It is now read-only.

Commit

Permalink
Fix invalid return result of TArrayUnsafe.Address
Browse files Browse the repository at this point in the history
  • Loading branch information
pixeltris committed Jul 31, 2019
1 parent abfb47b commit b34705b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public unsafe class TArrayUnsafe<T> : IList<T>, IDisposable

public IntPtr Address
{
get { return address; }
get { return (IntPtr)nativeArray; }//address; }
}

public FScriptArray ScriptArray
Expand Down

0 comments on commit b34705b

Please sign in to comment.