Revert writable folder check

This doesn't seem to work as intended
This commit is contained in:
Megamouse 2022-03-18 00:00:48 +01:00
parent bc7ed8eaab
commit 7a86cffd0a
1 changed files with 0 additions and 17 deletions

View File

@ -921,23 +921,6 @@ int main(int argc, char** argv)
return 1;
}
}
// Check if the directory is writable
fs::stat_t info{};
if (!fs::stat(emu_dir, info))
{
report_fatal_error(fmt::format("Unable to query folder stats. Error: %s\nCurrent location:\n%s", fs::g_tls_error, emu_dir));
return 1;
}
if (!info.is_writable)
{
report_fatal_error(fmt::format(
"The RPCS3 folder has no write permissions!\n"
"Please make sure that the current user has write permissions.\n"
"Current location:\n%s", emu_dir));
return 1;
}
}
#ifdef _WIN32