summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/filesystem/filesystem.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2020-07-30 21:29:39 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2020-07-30 21:29:39 +0200
commit45fd67c1093e0aa252228e250a66488029396764 (patch)
tree8cf3244deec6a10ee1eb70a6516c2fc274aab423 /src/core/hle/service/filesystem/filesystem.h
parentMerge pull request #4392 from lioncash/guard (diff)
downloadyuzu-45fd67c1093e0aa252228e250a66488029396764.tar
yuzu-45fd67c1093e0aa252228e250a66488029396764.tar.gz
yuzu-45fd67c1093e0aa252228e250a66488029396764.tar.bz2
yuzu-45fd67c1093e0aa252228e250a66488029396764.tar.lz
yuzu-45fd67c1093e0aa252228e250a66488029396764.tar.xz
yuzu-45fd67c1093e0aa252228e250a66488029396764.tar.zst
yuzu-45fd67c1093e0aa252228e250a66488029396764.zip
Diffstat (limited to 'src/core/hle/service/filesystem/filesystem.h')
-rw-r--r--src/core/hle/service/filesystem/filesystem.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/filesystem/filesystem.h b/src/core/hle/service/filesystem/filesystem.h
index 1b0a6a949..6dbbf0b2b 100644
--- a/src/core/hle/service/filesystem/filesystem.h
+++ b/src/core/hle/service/filesystem/filesystem.h
@@ -31,7 +31,7 @@ enum class SaveDataSpaceId : u8;
enum class SaveDataType : u8;
enum class StorageId : u8;
-struct SaveDataDescriptor;
+struct SaveDataAttribute;
struct SaveDataSize;
} // namespace FileSys
@@ -69,9 +69,9 @@ public:
ResultVal<FileSys::VirtualFile> OpenRomFS(u64 title_id, FileSys::StorageId storage_id,
FileSys::ContentRecordType type) const;
ResultVal<FileSys::VirtualDir> CreateSaveData(
- FileSys::SaveDataSpaceId space, const FileSys::SaveDataDescriptor& save_struct) const;
+ FileSys::SaveDataSpaceId space, const FileSys::SaveDataAttribute& save_struct) const;
ResultVal<FileSys::VirtualDir> OpenSaveData(
- FileSys::SaveDataSpaceId space, const FileSys::SaveDataDescriptor& save_struct) const;
+ FileSys::SaveDataSpaceId space, const FileSys::SaveDataAttribute& save_struct) const;
ResultVal<FileSys::VirtualDir> OpenSaveDataSpace(FileSys::SaveDataSpaceId space) const;
ResultVal<FileSys::VirtualDir> OpenSDMC() const;
ResultVal<FileSys::VirtualDir> OpenBISPartition(FileSys::BisPartitionId id) const;