mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 13:28:01 +03:00
Qt: Fix boot failed dialog
Some checks are pending
Some checks are pending
This commit is contained in:
parent
0aca5e222f
commit
8e6272bfee
1 changed files with 1 additions and 2 deletions
|
@ -549,13 +549,12 @@ void main_window::show_boot_error(game_boot_result status)
|
||||||
}
|
}
|
||||||
const QString link = tr("<br /><br />For information on setting up the emulator and dumping your PS3 games, read the <a %0 href=\"https://rpcs3.net/quickstart\">quickstart guide</a>.").arg(gui::utils::get_link_style());
|
const QString link = tr("<br /><br />For information on setting up the emulator and dumping your PS3 games, read the <a %0 href=\"https://rpcs3.net/quickstart\">quickstart guide</a>.").arg(gui::utils::get_link_style());
|
||||||
|
|
||||||
QMessageBox* msg = new QMessageBox();
|
QMessageBox* msg = new QMessageBox(this);
|
||||||
msg->setWindowTitle(tr("Boot Failed"));
|
msg->setWindowTitle(tr("Boot Failed"));
|
||||||
msg->setIcon(QMessageBox::Critical);
|
msg->setIcon(QMessageBox::Critical);
|
||||||
msg->setTextFormat(Qt::RichText);
|
msg->setTextFormat(Qt::RichText);
|
||||||
msg->setStandardButtons(QMessageBox::Ok);
|
msg->setStandardButtons(QMessageBox::Ok);
|
||||||
msg->setText(tr("Booting failed: %1 %2").arg(message).arg(link));
|
msg->setText(tr("Booting failed: %1 %2").arg(message).arg(link));
|
||||||
msg->setParent(this);
|
|
||||||
msg->setAttribute(Qt::WA_DeleteOnClose);
|
msg->setAttribute(Qt::WA_DeleteOnClose);
|
||||||
msg->open();
|
msg->open();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue