Merge pull request #12419 from lioncash/conf

SysConf: std::move fs pointer in constructor
This commit is contained in:
JosJuice 2023-12-14 20:47:27 +01:00 committed by GitHub
commit e34bfe0f72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ static size_t GetNonArrayEntrySize(SysConf::Entry::Type type)
return 0;
}
}
SysConf::SysConf(std::shared_ptr<IOS::HLE::FS::FileSystem> fs) : m_fs{fs}
SysConf::SysConf(std::shared_ptr<IOS::HLE::FS::FileSystem> fs) : m_fs{std::move(fs)}
{
Load();
}