Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

System.cpp: Fix Create Firmware Cache #12626

Merged
merged 1 commit into from Sep 8, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions rpcs3/Emu/System.cpp
Expand Up @@ -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
{
if (auto& _main = g_fxo->get<ppu_module>(); !_main.path.empty())
Expand Down