Skip to content

Commit

Permalink
Merge pull request #12419 from lioncash/conf
Browse files Browse the repository at this point in the history
SysConf: std::move fs pointer in constructor
  • Loading branch information
JosJuice committed Dec 14, 2023
2 parents 38752c9 + 14abdab commit e34bfe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/SysConf.cpp
Expand Up @@ -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();
}
Expand Down

0 comments on commit e34bfe0

Please sign in to comment.