aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Ava/Modules
diff options
context:
space:
mode:
authorIsaac Marovitz <42140194+IsaacMarovitz@users.noreply.github.com>2024-02-15 09:41:43 +0000
committerGitHub <noreply@github.com>2024-02-15 10:41:43 +0100
commitdfb14a56077707a22379592f812a3e26a24a4367 (patch)
tree150e4fec365247031ff0348e0f98e9468ce8fc23 /src/Ryujinx.Ava/Modules
parent904a5ffcb4d7339efed24156409e67b58c0e77bc (diff)
Updaters: Fix ARM Linux Updater (#6316)
* Remove Arch Checks * Fix ARM Linux updater
Diffstat (limited to 'src/Ryujinx.Ava/Modules')
-rw-r--r--src/Ryujinx.Ava/Modules/Updater/Updater.cs17
1 files changed, 2 insertions, 15 deletions
diff --git a/src/Ryujinx.Ava/Modules/Updater/Updater.cs b/src/Ryujinx.Ava/Modules/Updater/Updater.cs
index bd211fa5..5795f34f 100644
--- a/src/Ryujinx.Ava/Modules/Updater/Updater.cs
+++ b/src/Ryujinx.Ava/Modules/Updater/Updater.cs
@@ -68,7 +68,8 @@ namespace Ryujinx.Modules
}
else if (OperatingSystem.IsLinux())
{
- _platformExt = "linux_x64.tar.gz";
+ var arch = RuntimeInformation.OSArchitecture == Architecture.Arm64 ? "arm64" : "x64";
+ _platformExt = $"linux_{arch}.tar.gz";
}
Version newVersion;
@@ -637,20 +638,6 @@ namespace Ryujinx.Modules
public static bool CanUpdate(bool showWarnings)
{
#if !DISABLE_UPDATER
- if (RuntimeInformation.OSArchitecture != Architecture.X64 && !OperatingSystem.IsMacOS())
- {
- if (showWarnings)
- {
- Dispatcher.UIThread.InvokeAsync(() =>
- ContentDialogHelper.CreateWarningDialog(
- LocaleManager.Instance[LocaleKeys.DialogUpdaterArchNotSupportedMessage],
- LocaleManager.Instance[LocaleKeys.DialogUpdaterArchNotSupportedSubMessage])
- );
- }
-
- return false;
- }
-
if (!NetworkInterface.GetIsNetworkAvailable())
{
if (showWarnings)