mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 16:58:41 +00:00
fc77b089a6
* 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
13 lines
228 B
C#
13 lines
228 B
C#
namespace Ryujinx.HLE.FileSystem
|
|
{
|
|
enum SaveDataType : byte
|
|
{
|
|
SystemSaveData,
|
|
SaveData,
|
|
BcatDeliveryCacheStorage,
|
|
DeviceSaveData,
|
|
TemporaryStorage,
|
|
CacheStorage
|
|
}
|
|
}
|