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 /Ryujinx.HLE/HOS | |
| parent | 686b63e4794b975f8bb3cc5e03b2c9063c4d045f (diff) | |
Bugfix LibHac update to 0.13.3 and remove SD card workaround (#2579)
Diffstat (limited to 'Ryujinx.HLE/HOS')
| -rw-r--r-- | Ryujinx.HLE/HOS/LibHacHorizonManager.cs | 13 |
1 files changed, 2 insertions, 11 deletions
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 { |
