diff --git a/src/duckstation-qt/autoupdaterdialog.cpp b/src/duckstation-qt/autoupdaterdialog.cpp index 7140b1e32..7cd21d6f4 100644 --- a/src/duckstation-qt/autoupdaterdialog.cpp +++ b/src/duckstation-qt/autoupdaterdialog.cpp @@ -253,9 +253,12 @@ void AutoUpdaterDialog::getChangesComplete(QNetworkReply* reply) { const QJsonObject doc_object(doc.object()); - QString changes_html = QStringLiteral("
Installing this update will make your save states " + "incompatible. Please ensure you have saved your games to memory card " + "before installing this update or you will lose progress.
")); + } + m_ui.updateNotes->setText(changes_html); } else diff --git a/src/duckstation-qt/autoupdaterdialog.h b/src/duckstation-qt/autoupdaterdialog.h index 475dd9403..9b2ca4808 100644 --- a/src/duckstation-qt/autoupdaterdialog.h +++ b/src/duckstation-qt/autoupdaterdialog.h @@ -55,4 +55,5 @@ private: QString m_download_url; bool m_display_messages = false; + bool m_update_will_break_save_states = false; };