|
@@ -16,6 +16,7 @@ namespace Ryujinx.UI.Common.Helper
|
|
|
public static string LaunchPathArg { get; private set; }
|
|
public static string LaunchPathArg { get; private set; }
|
|
|
public static string LaunchApplicationId { get; private set; }
|
|
public static string LaunchApplicationId { get; private set; }
|
|
|
public static bool StartFullscreenArg { get; private set; }
|
|
public static bool StartFullscreenArg { get; private set; }
|
|
|
|
|
+ public static bool HideAvailableUpdates { get; private set; }
|
|
|
|
|
|
|
|
public static void ParseArguments(string[] args)
|
|
public static void ParseArguments(string[] args)
|
|
|
{
|
|
{
|
|
@@ -93,6 +94,9 @@ namespace Ryujinx.UI.Common.Helper
|
|
|
|
|
|
|
|
OverrideHideCursor = args[++i];
|
|
OverrideHideCursor = args[++i];
|
|
|
break;
|
|
break;
|
|
|
|
|
+ case "--hide-updates":
|
|
|
|
|
+ HideAvailableUpdates = true;
|
|
|
|
|
+ break;
|
|
|
case "--software-gui":
|
|
case "--software-gui":
|
|
|
OverrideHardwareAcceleration = false;
|
|
OverrideHardwareAcceleration = false;
|
|
|
break;
|
|
break;
|