Bugfix LibHac update to 0.13.3 and remove SD card workaround (#2579)

This commit is contained in:
Alex Barney 2021-08-26 14:18:49 -07:00 committed by GitHub
parent 686b63e479
commit 32cad88cc6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 15 deletions

View file

@ -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
{