diff options
| author | Alex Barney <thealexbarney@gmail.com> | 2020-03-25 01:14:35 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-25 19:14:35 +1100 |
| commit | 21c9c04f9f862d9c70c53dabe2f67bf1fb3d3f07 (patch) | |
| tree | 86588ec9745cb6cc7237ab5c654991b7d204265c /Ryujinx.HLE/HOS/Services/Settings | |
| parent | f695a215ad84607a2df8f31f2138918926eb3f0c (diff) | |
Add IMultiCommitManager (#1011)
* Update LibHac
* Add IMultiCommitManager
* Updates
* Delete NuGet.Config
* Add command version
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Settings')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs b/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs index 73f437e8..108cb56f 100644 --- a/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs +++ b/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs @@ -1,4 +1,5 @@ using LibHac; +using LibHac.Common; using LibHac.Fs; using LibHac.FsSystem; using LibHac.FsSystem.NcaUtils; @@ -231,7 +232,7 @@ namespace Ryujinx.HLE.HOS.Services.Settings IFileSystem firmwareRomFs = firmwareContent.OpenFileSystem(NcaSectionType.Data, device.System.FsIntegrityCheckLevel); - Result result = firmwareRomFs.OpenFile(out IFile firmwareFile, "/file", OpenMode.Read); + Result result = firmwareRomFs.OpenFile(out IFile firmwareFile, "/file".ToU8Span(), OpenMode.Read); if (result.IsFailure()) { return null; |
