mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-01 02:30:08 -06:00

Launch the Ryujinx.exe, first argument --no-gui or nogui, and the rest of the arguments should be your normal headless script. You can include the new option --use-main-config which will provide any arguments that you don't, filled in from your main config made by the UI. Input config is not inherited at this time.
30 lines
635 B
C#
30 lines
635 B
C#
using Ryujinx.Common.Utilities;
|
|
using Ryujinx.HLE.HOS.SystemState;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.UI.Common.Configuration.System
|
|
{
|
|
[JsonConverter(typeof(TypedStringEnumConverter<Language>))]
|
|
public enum Language
|
|
{
|
|
Japanese,
|
|
AmericanEnglish,
|
|
French,
|
|
German,
|
|
Italian,
|
|
Spanish,
|
|
Chinese,
|
|
Korean,
|
|
Dutch,
|
|
Portuguese,
|
|
Russian,
|
|
Taiwanese,
|
|
BritishEnglish,
|
|
CanadianFrench,
|
|
LatinAmericanSpanish,
|
|
SimplifiedChinese,
|
|
TraditionalChinese,
|
|
BrazilianPortuguese,
|
|
}
|
|
}
|