Skip to content
This repository was archived by the owner on Mar 30, 2019. It is now read-only.

Commit 81091d6

Browse files
committed
Fix build break in ShaderBytecode.
1 parent bfa2464 commit 81091d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/SharpDX.Direct3D12/ShaderBytecode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ internal void UpdateNative(ref __Native native, IntPtr pinBuffer)
7373
native.Pointer = pinBuffer;
7474
if (managedData != null)
7575
{
76-
native.Size = managedData.Length;
76+
native.Size = (IntPtr)managedData.Length;
7777
}
7878
}
7979
}

0 commit comments

Comments
 (0)