mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 17:01:24 +12:00
System.cpp: Fix Create Firmware Cache
This commit is contained in:
parent
a9437d69ab
commit
60fc90bb8e
1 changed files with 5 additions and 0 deletions
|
@ -1263,6 +1263,11 @@ game_boot_result Emulator::Load(const std::string& title_id, bool add_only, bool
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (auto& _main = g_fxo->get<ppu_module>(); _main.path.empty())
|
||||||
|
{
|
||||||
|
init_fxo_for_exec(nullptr, false);
|
||||||
|
}
|
||||||
|
|
||||||
g_fxo->init<named_thread>("SPRX Loader"sv, [this, dir_queue]() mutable
|
g_fxo->init<named_thread>("SPRX Loader"sv, [this, dir_queue]() mutable
|
||||||
{
|
{
|
||||||
if (auto& _main = g_fxo->get<ppu_module>(); !_main.path.empty())
|
if (auto& _main = g_fxo->get<ppu_module>(); !_main.path.empty())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue