diff options
| author | 2015-01-06 16:12:25 -0500 | |
|---|---|---|
| committer | 2015-01-06 16:12:25 -0500 | |
| commit | 8fbe5d2dcaa0f9330120210f5e009cb387cb4a0f (patch) | |
| tree | cf103e0a94a2cf2ce2add999e57482f9dde63216 /src | |
| parent | Archives: Changed the unimplemented archives comment. (diff) | |
| download | yuzu-8fbe5d2dcaa0f9330120210f5e009cb387cb4a0f.tar.gz yuzu-8fbe5d2dcaa0f9330120210f5e009cb387cb4a0f.tar.xz yuzu-8fbe5d2dcaa0f9330120210f5e009cb387cb4a0f.zip | |
Archives/Exdata: Don't set concrete_mount_point in the ctor
Diffstat (limited to 'src')
| -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 | |||
| 34 | } | 34 | } |
| 35 | 35 | ||
| 36 | Archive_ExtSaveData::Archive_ExtSaveData(const std::string& mount_location, bool shared) | 36 | Archive_ExtSaveData::Archive_ExtSaveData(const std::string& mount_location, bool shared) |
| 37 | : DiskArchive(GetExtDataContainerPath(mount_location, shared)), concrete_mount_point(mount_point) { | 37 | : DiskArchive(GetExtDataContainerPath(mount_location, shared)) { |
| 38 | LOG_INFO(Service_FS, "Directory %s set as base for ExtSaveData.", mount_point.c_str()); | 38 | LOG_INFO(Service_FS, "Directory %s set as base for ExtSaveData.", mount_point.c_str()); |
| 39 | } | 39 | } |
| 40 | 40 | ||