Archives/Exdata: Don't set concrete_mount_point in the ctor

This commit is contained in:
Subv 2015-01-06 16:12:25 -05:00
parent 32dbb76e00
commit 8fbe5d2dca
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}