mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 22:11:26 +12:00
Allow emulation to work without firmware (#9367)
* Allow emulation to work without firmware * Fix HLE prx path detection. * Fix manual list loading bugs. * Fix HLE gcm * GUI: Fix fonts search * GUI: Hardcode sprx list Do not depend on /dev_flash/sys/external/ contents.
This commit is contained in:
parent
51dcb4a79d
commit
2602be426f
14 changed files with 257 additions and 159 deletions
|
@ -344,6 +344,11 @@ void gui_application::InitializeCallbacks()
|
|||
callbacks.on_stop = [this]() { OnEmulatorStop(); };
|
||||
callbacks.on_ready = [this]() { OnEmulatorReady(); };
|
||||
|
||||
callbacks.on_missing_fw = [this]()
|
||||
{
|
||||
return m_gui_settings->GetBootConfirmation(m_main_window, gui::ib_confirm_fw);
|
||||
};
|
||||
|
||||
callbacks.handle_taskbar_progress = [this](s32 type, s32 value)
|
||||
{
|
||||
if (m_game_window)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue