From 4743fbcb9de11fe3225cf28b25669d15f750a37e Mon Sep 17 00:00:00 2001 From: Evan Husted Date: Thu, 20 Feb 2025 18:52:37 -0600 Subject: [PATCH] misc: chore: Prevent firmware installation prompt from showing up multiple times during runtime when using --install-firmware --- src/Ryujinx.UI.Common/Helper/CommandLineState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx.UI.Common/Helper/CommandLineState.cs b/src/Ryujinx.UI.Common/Helper/CommandLineState.cs index c6be6a172..77ca77c09 100644 --- a/src/Ryujinx.UI.Common/Helper/CommandLineState.cs +++ b/src/Ryujinx.UI.Common/Helper/CommandLineState.cs @@ -15,7 +15,7 @@ namespace Ryujinx.UI.Common.Helper public static string OverrideBackendThreading { get; private set; } public static string OverrideHideCursor { get; private set; } public static string BaseDirPathArg { get; private set; } - public static FilePath FirmwareToInstallPathArg { get; private set; } + public static FilePath FirmwareToInstallPathArg { get; set; } public static string Profile { get; private set; } public static string LaunchPathArg { get; private set; } public static string LaunchApplicationId { get; private set; }