Skip to content

Commit 779e43d

Browse files
committed
fix: Fixed compilation
1 parent 029ba03 commit 779e43d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Ruffles/Core/RuffleSocket.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ public void SendUnconnected(ArraySegment<byte> payload, IPEndPoint endpoint)
270270
Buffer.BlockCopy(payload.Array, payload.Offset, memory.Buffer, 1, payload.Count);
271271

272272
// Send the packet
273-
SendRawRealEndPoint(endpoint, new ArraySegment<byte>(memory.Buffer, (int)memory.VirtualOffset, (int)memory.VirtualCount);
273+
SendRawRealEndPoint(endpoint, new ArraySegment<byte>(memory.Buffer, (int)memory.VirtualOffset, (int)memory.VirtualCount));
274274

275275
// Release memory
276276
memoryManager.DeAlloc(memory);

0 commit comments

Comments
 (0)