mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 06:55:09 +00:00
Set PSN to disconnected when net status is disconnected
This commit is contained in:
parent
1b5d9a34df
commit
324af04426
3 changed files with 17 additions and 1 deletions
|
|
@ -303,6 +303,12 @@ static void fixup_settings(const psf::registry* _psf)
|
|||
g_cfg.video.resolution.set(new_resolution);
|
||||
}
|
||||
}
|
||||
|
||||
if (g_cfg.net.net_active == np_internet_status::disabled && g_cfg.net.psn_status != np_psn_status::disabled)
|
||||
{
|
||||
sys_log.warning("Net status was set to disconnected so psn status was disabled");
|
||||
g_cfg.net.psn_status.set(np_psn_status::disabled);
|
||||
}
|
||||
}
|
||||
|
||||
extern void dump_executable(std::span<const u8> data, const ppu_module<lv2_obj>* _module, std::string_view title_id)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue