diff options
| author | Ac_K <Acoustik666@gmail.com> | 2022-03-22 20:46:16 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-22 20:46:16 +0100 |
| commit | e3b36db71c62a34a26b30683dd5ad5410c97cc9c (patch) | |
| tree | 18feea12db46ad2ddcdc207e9fd0e805fd98b7da /Ryujinx.HLE/HOS/Services/Fs | |
| parent | ba0171d05464201c1513386b7d0b69b5ea956426 (diff) | |
hle: Some cleanup (#3210)
* hle: Some cleanup
This PR cleaned up a bit the HLE folder and the VirtualFileSystem one, since we use LibHac, we can use some class of it directly instead of duplicate things. The "Content" of VFS folder is removed since it should be handled in the NCM service directly.
A larger cleanup should be done later since there is still be duplicated code here and there.
* Fix Headless.SDL2
* Addresses gdkchan feedback
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Fs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs b/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs index 94578303..01e1aa34 100644 --- a/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs +++ b/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs @@ -2,7 +2,6 @@ using LibHac; using LibHac.Common; using LibHac.Fs; using LibHac.Fs.Shim; -using LibHac.FsSrv; using LibHac.FsSrv.Impl; using LibHac.FsSystem; using LibHac.Ncm; @@ -19,7 +18,6 @@ using static Ryujinx.HLE.Utilities.StringUtils; using IFileSystem = LibHac.FsSrv.Sf.IFileSystem; using IStorage = LibHac.FsSrv.Sf.IStorage; using RightsId = LibHac.Fs.RightsId; -using StorageId = Ryujinx.HLE.FileSystem.StorageId; namespace Ryujinx.HLE.HOS.Services.Fs { |
