From 98f2967aace29eb0fd90ae5aec40ddaa2946852b Mon Sep 17 00:00:00 2001 From: HexyFify <41875832+HexyFify@users.noreply.github.com> Date: Thu, 1 Nov 2018 17:51:42 -0700 Subject: [PATCH] Update firmware latest version to 4.83 --- 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 1eb8b84ed4..2a396bb121 100644 --- a/rpcs3/rpcs3qt/main_window.cpp +++ b/rpcs3/rpcs3qt/main_window.cpp @@ -551,7 +551,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.82"; + const std::string cur_version = "4.83"; 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)),