aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Ipc/IpcRecvListBuffDesc.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Ipc/IpcRecvListBuffDesc.cs')
-rw-r--r--src/Ryujinx.HLE/HOS/Ipc/IpcRecvListBuffDesc.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Ryujinx.HLE/HOS/Ipc/IpcRecvListBuffDesc.cs b/src/Ryujinx.HLE/HOS/Ipc/IpcRecvListBuffDesc.cs
index bcc9d8f8..f74f81c7 100644
--- a/src/Ryujinx.HLE/HOS/Ipc/IpcRecvListBuffDesc.cs
+++ b/src/Ryujinx.HLE/HOS/Ipc/IpcRecvListBuffDesc.cs
@@ -1,11 +1,9 @@
-using System.IO;
-
namespace Ryujinx.HLE.HOS.Ipc
{
struct IpcRecvListBuffDesc
{
public ulong Position { get; private set; }
- public ulong Size { get; private set; }
+ public ulong Size { get; private set; }
public IpcRecvListBuffDesc(ulong position, ulong size)
{
@@ -20,4 +18,4 @@ namespace Ryujinx.HLE.HOS.Ipc
Size = (ushort)(packedValue >> 48);
}
}
-} \ No newline at end of file
+}