diff options
author | Lioncash <mathew1800@gmail.com> | 2016-03-21 07:02:34 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2016-03-21 07:09:12 +0100 |
commit | f6ad3e42f0215aab166ae2b6d0c44fc72879d4df (patch) | |
tree | 8c1b84f21bb268b897f3197cfec9a2ae32bdae45 /src | |
parent | Merge pull request #1302 from Subv/save_fix (diff) | |
download | yuzu-f6ad3e42f0215aab166ae2b6d0c44fc72879d4df.tar yuzu-f6ad3e42f0215aab166ae2b6d0c44fc72879d4df.tar.gz yuzu-f6ad3e42f0215aab166ae2b6d0c44fc72879d4df.tar.bz2 yuzu-f6ad3e42f0215aab166ae2b6d0c44fc72879d4df.tar.lz yuzu-f6ad3e42f0215aab166ae2b6d0c44fc72879d4df.tar.xz yuzu-f6ad3e42f0215aab166ae2b6d0c44fc72879d4df.tar.zst yuzu-f6ad3e42f0215aab166ae2b6d0c44fc72879d4df.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/file_sys/archive_extsavedata.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/file_sys/archive_extsavedata.h b/src/core/file_sys/archive_extsavedata.h index 287a6fee1..e9a72850d 100644 --- a/src/core/file_sys/archive_extsavedata.h +++ b/src/core/file_sys/archive_extsavedata.h @@ -45,13 +45,14 @@ public: void WriteIcon(const Path& path, const u8* icon_data, size_t icon_size); private: + bool shared; ///< Whether this archive represents an ExtSaveData archive or a SharedExtSaveData archive + /** * This holds the full directory path for this archive, it is only set after a successful call * to Open, this is formed as <base extsavedatapath>/<type>/<high>/<low>. * See GetExtSaveDataPath for the code that extracts this data from an archive path. */ std::string mount_point; - bool shared; ///< Whether this archive represents an ExtSaveData archive or a SharedExtSaveData archive }; /** |