Ryujinx/Ryujinx.HLE/Input/HidHotkeyButtons.cs
BaronKiko 50d6ec9efe Toggle VSync Hotkey (#659)
* 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>
2019-04-22 16:54:31 +10:00

11 lines
137 B
C#

using System;
namespace Ryujinx.HLE.Input
{
[Flags]
public enum HidHotkeyButtons
{
ToggleVSync = 1 << 0,
}
}