From 92ff7c4c240954a8d05291979eeb5ba83050292b Mon Sep 17 00:00:00 2001 From: EmulationChannel <37957125+EmulationChannel@users.noreply.github.com> Date: Sat, 16 Feb 2019 09:31:06 -0200 Subject: [PATCH] Update FW Latest Version Updates the latest FW 4.84 version according to: https://www.playstation.com/en-us/support/system-updates/ps3/ --- 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 d769be9ff0..225ef3b772 100644 --- a/rpcs3/rpcs3qt/main_window.cpp +++ b/rpcs3/rpcs3qt/main_window.cpp @@ -567,7 +567,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.83"; + const std::string cur_version = "4.84"; 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)),