diff options
| author | Alex Barney <thealexbarney@gmail.com> | 2022-11-23 10:32:35 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-23 18:32:35 +0100 |
| commit | 36f00985d3191ebd6ea909ddc4ed447ebdbf51b5 (patch) | |
| tree | 7d746bdf2e21ca76a90bfb03a24aae01ef4de3f6 /Ryujinx.HLE/HOS/Services/Fs/IDeviceOperator.cs | |
| parent | 748d87adccd0f331bd6d1163703040b6d62353b8 (diff) | |
Update to LibHac 0.17.0 (#3878)
* Update to LibHac 0.17.0
* Don't clear SD card saves when starting the emulator
This was an old workaround for errors that happened when a user's SD card encryption seed changed. SD card saves have been unencrypted for over a year, so we should be fine to remove the workaround.
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Fs/IDeviceOperator.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Fs/IDeviceOperator.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Fs/IDeviceOperator.cs b/Ryujinx.HLE/HOS/Services/Fs/IDeviceOperator.cs index 07ade0c6..f069fa3e 100644 --- a/Ryujinx.HLE/HOS/Services/Fs/IDeviceOperator.cs +++ b/Ryujinx.HLE/HOS/Services/Fs/IDeviceOperator.cs @@ -1,6 +1,7 @@ using LibHac; using LibHac.Common; -using LibHac.Fs; + +using GameCardHandle = System.UInt32; namespace Ryujinx.HLE.HOS.Services.Fs { @@ -41,7 +42,7 @@ namespace Ryujinx.HLE.HOS.Services.Fs { Result result = _baseOperator.Get.GetGameCardHandle(out GameCardHandle handle); - context.ResponseData.Write(handle.Value); + context.ResponseData.Write(handle); return (ResultCode)result.Value; } |
