From 60fc90bb8e8c04629521094a9c8fb2cad9955829 Mon Sep 17 00:00:00 2001 From: Eladash Date: Thu, 8 Sep 2022 18:39:07 +0300 Subject: [PATCH] System.cpp: Fix Create Firmware Cache --- rpcs3/Emu/System.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index 040602bb3e..a8106ee311 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -1263,6 +1263,11 @@ game_boot_result Emulator::Load(const std::string& title_id, bool add_only, bool } } + if (auto& _main = g_fxo->get(); _main.path.empty()) + { + init_fxo_for_exec(nullptr, false); + } + g_fxo->init("SPRX Loader"sv, [this, dir_queue]() mutable { if (auto& _main = g_fxo->get(); !_main.path.empty())