mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 16:01:42 +12:00
fix some warnings
This commit is contained in:
parent
c39ad1ee12
commit
fee96ec92d
5 changed files with 9 additions and 6 deletions
|
@ -124,7 +124,7 @@ void emu_settings::LoadSettings(const std::string& title_id)
|
|||
|
||||
if (!custom_config_path.empty())
|
||||
{
|
||||
if (config = fs::file(custom_config_path, fs::read + fs::write))
|
||||
if ((config = fs::file(custom_config_path, fs::read + fs::write)))
|
||||
{
|
||||
auto [custom_config, custom_error] = yaml_load(config.to_string());
|
||||
config.close();
|
||||
|
@ -685,6 +685,7 @@ QString emu_settings::GetLocalizedSetting(const QString& original, emu_settings_
|
|||
{
|
||||
case np_psn_status::disabled: return tr("Disconnected", "PSN Status");
|
||||
case np_psn_status::fake: return tr("Simulated", "PSN Status");
|
||||
case np_psn_status::rpcn: return tr("RPCN", "PSN Status");
|
||||
}
|
||||
break;
|
||||
case emu_settings_type::SleepTimersAccuracy:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue