ryujinx/src/Ryujinx.Common/Configuration/Hid/LeftJoyconCommonConfig.cs
Willi Schinmeyer 30d7253e26 Add raw screenshot gamepad button
This triggers the same raw screenshot as the keyboard hotkey,
i.e. the game is not informed of the intent to screenshot,
so it cannot add watermarks etc.

The button can be configured using both the regular UI and GTK.

Includes English and German translations.

An alternate approach is proposed in draft PR #4503:
Allow triggering all hotkeys using the gamepad.

Re: #5952
2024-09-06 13:06:39 +02:00

17 lines
577 B
C#

namespace Ryujinx.Common.Configuration.Hid
{
public class LeftJoyconCommonConfig<TButton>
{
public TButton ButtonMinus { get; set; }
public TButton ButtonScreenshot { get; set; }
public TButton ButtonL { get; set; }
public TButton ButtonZl { get; set; }
public TButton ButtonSl { get; set; }
public TButton ButtonSr { get; set; }
public TButton DpadUp { get; set; }
public TButton DpadDown { get; set; }
public TButton DpadLeft { get; set; }
public TButton DpadRight { get; set; }
}
}