From ec41483e9bf07a7114392fe109fd69a6a9d02132 Mon Sep 17 00:00:00 2001 From: scribam Date: Mon, 15 Jan 2018 20:44:03 +0100 Subject: [PATCH] Update current firmware version --- rpcs3/rpcs3qt/main_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/main_window.cpp b/rpcs3/rpcs3qt/main_window.cpp index f62d67bd60..7d6f854a2f 100644 --- a/rpcs3/rpcs3qt/main_window.cpp +++ b/rpcs3/rpcs3qt/main_window.cpp @@ -452,7 +452,7 @@ void main_window::InstallPup(const QString& dropPath) std::string version_string = pup.get_file(0x100).to_string(); version_string.erase(version_string.find('\n')); - const std::string cur_version = "4.81"; + const std::string cur_version = "4.82"; if (version_string < cur_version && QMessageBox::question(this, tr("RPCS3 Firmware Installer"), tr("Old firmware detected.\nThe newest firmware version is %1 and you are trying to install version %2\nContinue installation?").arg(qstr(cur_version), qstr(version_string)),