Skip to content
Permalink
Browse files
Merge pull request #9628 from Dentomologist/wiiutils_fix_reference_to…
…_temporary_subobject

WiiUtils: Remove reference qualifier
  • Loading branch information
leoetlino committed Apr 6, 2021
2 parents f18743a + c892c27 commit 3b6fdb7
Showing 1 changed file with 1 addition and 1 deletion.
@@ -109,7 +109,7 @@ static bool ImportWAD(IOS::HLE::Kernel& ios, const DiscIO::VolumeWAD& wad,
// they are not present. So ensure they exist and create them if they don't.
const bool shop_logs_exist = [&] {
const std::array<u8, 32> dummy_data{};
for (const std::string& path : {"/shared2/ec/shopsetu.log", "/shared2/succession/shop.log"})
for (const std::string path : {"/shared2/ec/shopsetu.log", "/shared2/succession/shop.log"})
{
constexpr IOS::HLE::FS::Mode rw_mode = IOS::HLE::FS::Mode::ReadWrite;
if (fs->CreateFullPath(IOS::SYSMENU_UID, IOS::SYSMENU_GID, path, 0,

0 comments on commit 3b6fdb7

Please sign in to comment.