From d8db20a3d3ab92599e512907894a93ede81d66ec Mon Sep 17 00:00:00 2001 From: bookmist Date: Thu, 11 Jun 2026 15:45:51 +0300 Subject: [PATCH] vita3k: ignore errors on module preload. It allow to run programs without installed firmware (it's still not recommended, but now possible) --- vita3k/interface.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vita3k/interface.cpp b/vita3k/interface.cpp index 06c995aa0..0adf9dd11 100644 --- a/vita3k/interface.cpp +++ b/vita3k/interface.cpp @@ -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