mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-13 03:36:39 +00:00
sfdsnres: fix endianess issue for port serialisation
This commit is contained in:
parent
730d2f4b9b
commit
131b43170e
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ namespace Ryujinx.HLE.HOS.Services.Sockets.Sfdnsres.Types
|
|||
{
|
||||
Length = (byte)Unsafe.SizeOf<Array4<byte>>();
|
||||
Family = (byte)AddressFamily.InterNetwork;
|
||||
Port = port;
|
||||
Port = IPAddress.HostToNetworkOrder(port);
|
||||
Address = new Array4<byte>();
|
||||
|
||||
address.TryWriteBytes(Address.AsSpan(), out _);
|
||||
|
|
Loading…
Reference in a new issue