summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2016-03-22 16:56:47 +0100
committerbunnei <bunneidev@gmail.com>2016-03-22 16:56:47 +0100
commit85edb851b07d1c5cbb2a1c740361ca39bd202a08 (patch)
treefaf4de429b806490c1c13ecabd820c85b6dec5d8 /src/core
parentMerge pull request #1563 from lioncash/lolfiq (diff)
parentarchive_extsavedata: Fix member initialization order (diff)
downloadyuzu-85edb851b07d1c5cbb2a1c740361ca39bd202a08.tar
yuzu-85edb851b07d1c5cbb2a1c740361ca39bd202a08.tar.gz
yuzu-85edb851b07d1c5cbb2a1c740361ca39bd202a08.tar.bz2
yuzu-85edb851b07d1c5cbb2a1c740361ca39bd202a08.tar.lz
yuzu-85edb851b07d1c5cbb2a1c740361ca39bd202a08.tar.xz
yuzu-85edb851b07d1c5cbb2a1c740361ca39bd202a08.tar.zst
yuzu-85edb851b07d1c5cbb2a1c740361ca39bd202a08.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/file_sys/archive_extsavedata.h3
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
};
/**