50d6ec9efe
* 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,
|
|
}
|
|
}
|