From 2c528823104b60321493e7bfda42c51fd146961c Mon Sep 17 00:00:00 2001 From: Ani Date: Sat, 8 Feb 2025 18:58:09 +0000 Subject: [PATCH] linux/arm64: Enable auto-updater --- 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 a67af2cc6e..45425dbd57 100644 --- a/rpcs3/rpcs3qt/main_window.cpp +++ b/rpcs3/rpcs3qt/main_window.cpp @@ -3356,7 +3356,7 @@ void main_window::CreateConnects() connect(ui->updateAct, &QAction::triggered, this, [this]() { -#if (!defined(_WIN32) && !defined(__linux__) && !defined(__APPLE__)) || (defined(ARCH_ARM64) && !defined(__APPLE__)) +#if (!defined(_WIN32) && !defined(__linux__) && !defined(__APPLE__)) || (defined(ARCH_ARM64) && !defined(__linux__) && !defined(__APPLE__)) QMessageBox::warning(this, tr("Auto-updater"), tr("The auto-updater isn't available for your OS currently.")); return; #endif