From 24ee4f4d66f9b6c32afa6a4106520829c9675b53 Mon Sep 17 00:00:00 2001 From: Alex Barney Date: Thu, 23 May 2019 14:49:17 -0500 Subject: [PATCH] Fix alignment again --- Ryujinx.HLE/HOS/Services/FspSrv/IFileSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.HLE/HOS/Services/FspSrv/IFileSystem.cs b/Ryujinx.HLE/HOS/Services/FspSrv/IFileSystem.cs index d9b1b9aae9..18a9f1d2b7 100644 --- a/Ryujinx.HLE/HOS/Services/FspSrv/IFileSystem.cs +++ b/Ryujinx.HLE/HOS/Services/FspSrv/IFileSystem.cs @@ -50,7 +50,7 @@ namespace Ryujinx.HLE.HOS.Services.FspSrv { string name = ReadUtf8String(context); - int mode = context.RequestData.ReadInt32(); + int mode = context.RequestData.ReadInt32(); long size = context.RequestData.ReadInt64(); if (name == null)