diff options
author | Subv <subv2112@gmail.com> | 2015-01-06 22:12:25 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2015-01-06 22:12:25 +0100 |
commit | 8fbe5d2dcaa0f9330120210f5e009cb387cb4a0f (patch) | |
tree | cf103e0a94a2cf2ce2add999e57482f9dde63216 /src/core/file_sys | |
parent | Archives: Changed the unimplemented archives comment. (diff) | |
download | yuzu-8fbe5d2dcaa0f9330120210f5e009cb387cb4a0f.tar yuzu-8fbe5d2dcaa0f9330120210f5e009cb387cb4a0f.tar.gz yuzu-8fbe5d2dcaa0f9330120210f5e009cb387cb4a0f.tar.bz2 yuzu-8fbe5d2dcaa0f9330120210f5e009cb387cb4a0f.tar.lz yuzu-8fbe5d2dcaa0f9330120210f5e009cb387cb4a0f.tar.xz yuzu-8fbe5d2dcaa0f9330120210f5e009cb387cb4a0f.tar.zst yuzu-8fbe5d2dcaa0f9330120210f5e009cb387cb4a0f.zip |
Diffstat (limited to 'src/core/file_sys')
-rw-r--r-- | src/core/file_sys/archive_extsavedata.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/archive_extsavedata.cpp b/src/core/file_sys/archive_extsavedata.cpp index b8f8b2ed2..0805f42ae 100644 --- a/src/core/file_sys/archive_extsavedata.cpp +++ b/src/core/file_sys/archive_extsavedata.cpp @@ -34,7 +34,7 @@ static std::string GetExtDataContainerPath(const std::string& mount_point, bool } Archive_ExtSaveData::Archive_ExtSaveData(const std::string& mount_location, bool shared) - : DiskArchive(GetExtDataContainerPath(mount_location, shared)), concrete_mount_point(mount_point) { + : DiskArchive(GetExtDataContainerPath(mount_location, shared)) { LOG_INFO(Service_FS, "Directory %s set as base for ExtSaveData.", mount_point.c_str()); } |