diff options
| author | emmauss <emmausssss@gmail.com> | 2018-09-09 01:04:26 +0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-09-08 19:04:26 -0300 |
| commit | fc77b089a6ab600ac6f954cb193d26239008975f (patch) | |
| tree | 48e781b399eaf1776b82bb9735cad8d5845b63c2 /Ryujinx.HLE/FileSystem/SaveSpaceId.cs | |
| parent | 322721811441e5735c64a8821e4771d6872a0fb7 (diff) | |
Implements proper save path (#386)
* initial save path implementation
* fix savedatatype offset, remove incomplete createsavedata implimentation
* address nits
* fix crash if npdm is not found
* made saveinfo readonly, other stuff
* remove context param from saveinfo contructor
* fix style
* remove whitespace
Diffstat (limited to 'Ryujinx.HLE/FileSystem/SaveSpaceId.cs')
| -rw-r--r-- | Ryujinx.HLE/FileSystem/SaveSpaceId.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Ryujinx.HLE/FileSystem/SaveSpaceId.cs b/Ryujinx.HLE/FileSystem/SaveSpaceId.cs new file mode 100644 index 00000000..5a2b32d6 --- /dev/null +++ b/Ryujinx.HLE/FileSystem/SaveSpaceId.cs @@ -0,0 +1,10 @@ +namespace Ryujinx.HLE.FileSystem +{ + enum SaveSpaceId : byte + { + NandSystem, + NandUser, + SdCard, + TemporaryStorage + } +} |
