Qt: Add an instruction to the autoupdater pop up.

This commit is contained in:
kamfretoz 2023-07-26 11:00:42 +07:00 committed by Connor McLaughlin
parent 9d3cd5784f
commit 744cc4b705
1 changed files with 1 additions and 1 deletions

View File

@ -414,7 +414,7 @@ void AutoUpdaterDialog::downloadUpdateClicked()
QMessageBox msgbox;
msgbox.setIcon(QMessageBox::Critical);
msgbox.setWindowTitle(tr("Savestate Warning"));
msgbox.setText(tr("<h1>WARNING</h1><p style='font-size:12pt;'>Installing this update will make your <b>save states incompatible</b>.</p><p>Do you wish to continue?</p>"));
msgbox.setText(tr("<h1>WARNING</h1><p style='font-size:12pt;'>Installing this update will make your <b>save states incompatible</b>, <i>be sure to save any progress to your memory cards before proceeding</i>.</p><p>Do you wish to continue?</p>"));
msgbox.addButton(QMessageBox::Yes);
msgbox.addButton(QMessageBox::No);
msgbox.setDefaultButton(QMessageBox::No);