mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-27 04:25:12 +00:00
cleanup
This commit is contained in:
parent
b6bdac3161
commit
6fcefc95e7
@ -28,7 +28,6 @@ public:
|
||||
}
|
||||
|
||||
static bool IsSystemModule(const std::filesystem::path& path) {
|
||||
|
||||
const auto sys_modules_path = Common::FS::GetUserPath(Common::FS::PathType::SysModuleDir);
|
||||
|
||||
const auto abs_path = std::filesystem::absolute(path).lexically_normal();
|
||||
@ -66,7 +65,7 @@ public:
|
||||
bool is_lle = false;
|
||||
auto it = std::find_if(modules.begin(), modules.end(),
|
||||
[&name, is_sys_module, is_lle](const ModuleInfo& entry) {
|
||||
return entry.name == name && entry.is_lle == false;
|
||||
return entry.name == name && !entry.is_lle;
|
||||
});
|
||||
|
||||
if (it == modules.end()) {
|
||||
|
Loading…
Reference in New Issue
Block a user