aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-04-06 01:07:51 -0300
committergdkchan <gab.dark.100@gmail.com>2018-04-06 01:07:51 -0300
commit2fd718c163a6f8adfc189f16b829542fdde0261d (patch)
tree5f789f48142e323089345df7554bbff75686b28d
parentdcf0f0be389aca6fa60eebf57942bd48337f5d08 (diff)
Fix typo
-rw-r--r--Ryujinx.Core/OsHle/Services/Bsd/IClient.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Core/OsHle/Services/Bsd/IClient.cs b/Ryujinx.Core/OsHle/Services/Bsd/IClient.cs
index d88737da..199ea113 100644
--- a/Ryujinx.Core/OsHle/Services/Bsd/IClient.cs
+++ b/Ryujinx.Core/OsHle/Services/Bsd/IClient.cs
@@ -266,9 +266,9 @@ namespace Ryujinx.Core.OsHle.Services.Bsd
Writer.Write((short)((IPEndPoint)NewBsdSocket.Handle.LocalEndPoint).Port);
- byte[] IpAdress = NewBsdSocket.IpAddress.GetAddressBytes();
+ byte[] IpAddress = NewBsdSocket.IpAddress.GetAddressBytes();
- Writer.Write(IpAdress);
+ Writer.Write(IpAddress);
AMemoryHelper.WriteBytes(Context.Memory, AddrBufferPtr, MS.ToArray());