diff --git a/rpcs3/rpcs3qt/gui_application.cpp b/rpcs3/rpcs3qt/gui_application.cpp index 8b93a340bc..fd5a50e326 100644 --- a/rpcs3/rpcs3qt/gui_application.cpp +++ b/rpcs3/rpcs3qt/gui_application.cpp @@ -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; } } diff --git a/rpcs3/rpcs3qt/welcome_dialog.cpp b/rpcs3/rpcs3qt/welcome_dialog.cpp index defbce4012..8d6c6916ed 100644 --- a/rpcs3/rpcs3qt/welcome_dialog.cpp +++ b/rpcs3/rpcs3qt/welcome_dialog.cpp @@ -103,7 +103,7 @@ welcome_dialog::welcome_dialog(std::shared_ptr 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)); }); }