vita3k: ignore errors on module preload.

It allow to run programs without installed firmware (it's still not recommended, but now possible)
This commit is contained in:
bookmist
2026-06-11 15:45:51 +03:00
parent 7c567c1804
commit d8db20a3d3
+1 -2
View File
@@ -529,8 +529,7 @@ static ExitCode load_app_impl(SceUID &main_module_id, EmuEnvState &emuenv, const
for (const auto &module_path : lib_load_list) {
auto res = load_module(emuenv, module_path);
if (res < 0)
return FileNotFound;
LOG_ERROR_IF(res < 0, "Failed to load preloaded module: {}. Ignoring this error.", module_path);
}
// Load taiHEN plugins configured for this title