diff options
| author | Alex Barney <thealexbarney@gmail.com> | 2021-08-26 14:18:49 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-26 23:18:49 +0200 |
| commit | 32cad88cc60793f9ee6c11d15e8b5b71c3d725a2 (patch) | |
| tree | e3caebbb7ba2b0168b714089e2931035157a4f7e | |
| parent | 686b63e4794b975f8bb3cc5e03b2c9063c4d045f (diff) | |
Bugfix LibHac update to 0.13.3 and remove SD card workaround (#2579)
| -rw-r--r-- | Ryujinx.HLE/FileSystem/VirtualFileSystem.cs | 3 | ||||
| -rw-r--r-- | Ryujinx.HLE/HOS/LibHacHorizonManager.cs | 13 | ||||
| -rw-r--r-- | Ryujinx.HLE/Ryujinx.HLE.csproj | 2 |
3 files changed, 3 insertions, 15 deletions
diff --git a/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs b/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs index 1bd34765..580a794e 100644 --- a/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs +++ b/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs @@ -273,9 +273,6 @@ namespace Ryujinx.HLE.FileSystem rc = FixExtraDataInSpaceId(hos, SaveDataSpaceId.User); if (rc.IsFailure()) return rc; - rc = FixExtraDataInSpaceId(hos, SaveDataSpaceId.SdCache); - if (rc.IsFailure()) return rc; - return Result.Success; } diff --git a/Ryujinx.HLE/HOS/LibHacHorizonManager.cs b/Ryujinx.HLE/HOS/LibHacHorizonManager.cs index 0444b9c5..61e0227f 100644 --- a/Ryujinx.HLE/HOS/LibHacHorizonManager.cs +++ b/Ryujinx.HLE/HOS/LibHacHorizonManager.cs @@ -97,17 +97,8 @@ namespace Ryujinx.HLE.HOS try { - try - { - RyujinxClient.Fs.CleanDirectoryRecursively("sdcard:/Nintendo/save".ToU8Span()).IgnoreResult(); - } - catch (Exception) { /* We don't care about the result */ } - - try - { - RyujinxClient.Fs.DeleteDirectoryRecursively("sdcard:/save".ToU8Span()).IgnoreResult(); - } - catch (Exception) { /* We don't care about the result */ } + RyujinxClient.Fs.CleanDirectoryRecursively("sdcard:/Nintendo/save".ToU8Span()).IgnoreResult(); + RyujinxClient.Fs.DeleteDirectoryRecursively("sdcard:/save".ToU8Span()).IgnoreResult(); } finally { diff --git a/Ryujinx.HLE/Ryujinx.HLE.csproj b/Ryujinx.HLE/Ryujinx.HLE.csproj index ca89d413..225f622c 100644 --- a/Ryujinx.HLE/Ryujinx.HLE.csproj +++ b/Ryujinx.HLE/Ryujinx.HLE.csproj @@ -20,7 +20,7 @@ <ItemGroup> <PackageReference Include="Concentus" Version="1.1.7" /> - <PackageReference Include="LibHac" Version="0.13.2" /> + <PackageReference Include="LibHac" Version="0.13.3" /> <PackageReference Include="MsgPack.Cli" Version="1.0.1" /> <PackageReference Include="SixLabors.ImageSharp.Drawing" Version="1.0.0-beta11" /> </ItemGroup> |
