mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-29 08:07:43 +02:00

* Added toggle vsync button and hotkeys section to config * Uses hasflag instead of bitwise comparison * fixed schema name Co-Authored-By: BaronKiko <BaronKiko@users.noreply.github.com>
10 lines
137 B
C#
10 lines
137 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Input
|
|
{
|
|
[Flags]
|
|
public enum HidHotkeyButtons
|
|
{
|
|
ToggleVSync = 1 << 0,
|
|
}
|
|
}
|