minor cleanup

This commit is contained in:
digant 2024-12-07 18:12:16 +01:00
parent 2576520429
commit 86be07f88b
2 changed files with 2 additions and 2 deletions

View file

@ -163,7 +163,7 @@ bool gui_application::Init()
if (welcome->exec() == QDialog::Rejected)
{
// If the agreement on RPCS3's usage conditions was not accecpted by the user, ask the main window to gracefully terminate
// If the agreement on RPCS3's usage conditions was not accepted by the user, ask the main window to gracefully terminate
return false;
}
}

View file

@ -103,7 +103,7 @@ welcome_dialog::welcome_dialog(std::shared_ptr<gui_settings> gui_settings, bool
connect(this, &QDialog::rejected, this, [this]() // "reject" signal's event handler
{
// if the agreement on RPCS3's usage conditions was not accecpted by the user, always display the initial welcome dialog at next startup
// if the agreement on RPCS3's usage conditions was not accepted by the user, always display the initial welcome dialog at next startup
m_gui_settings->SetValue(gui::ib_show_welcome, QVariant(true));
});
}