diff options
| author | jms-c <79325704+jms-c@users.noreply.github.com> | 2021-04-09 00:19:21 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-09 01:19:21 +0200 |
| commit | 5cb83293bc25fa707a33e7fca23bf3d1f4a6db26 (patch) | |
| tree | 8443cf7be2dee4c3fc9416f53b8952122f70d848 | |
| parent | 58660c853661f72e633b0a5fb459fe581545e331 (diff) | |
Enable updates in portable mode. (related to #1885) (#2181)
* Enable updates in portable mode.
* Added update test!
* Enable update test again!
* Triggering CI
* Made this PR mergeable.
| -rw-r--r-- | Ryujinx/Modules/Updater/Updater.cs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Ryujinx/Modules/Updater/Updater.cs b/Ryujinx/Modules/Updater/Updater.cs index daf5e3a2..c84639cb 100644 --- a/Ryujinx/Modules/Updater/Updater.cs +++ b/Ryujinx/Modules/Updater/Updater.cs @@ -491,16 +491,6 @@ namespace Ryujinx.Modules return false; } - if (AppDataManager.Mode == AppDataManager.LaunchMode.Portable) - { - if (showWarnings) - { - GtkDialog.CreateWarningDialog("You cannot update a portable version of Ryujinx!", "Please use a non-portable configuration to enable updates."); - } - - return false; - } - if (Program.Version.Contains("dirty")) { if (showWarnings) |
