diff options
| author | BaronKiko <BaronKiko@users.noreply.github.com> | 2019-04-22 07:54:31 +0100 |
|---|---|---|
| committer | jduncanator <1518948+jduncanator@users.noreply.github.com> | 2019-04-22 16:54:31 +1000 |
| commit | 50d6ec9efe7911c8dbadec0aba905817c5903f08 (patch) | |
| tree | 4d8dd70fc2b82bf159323908d133a7754fe6af42 /Ryujinx.HLE/Input | |
| parent | 74da8785a5f3a79914182d384e966fb5d27fa708 (diff) | |
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>
Diffstat (limited to 'Ryujinx.HLE/Input')
| -rw-r--r-- | Ryujinx.HLE/Input/HidHotkeyButtons.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Ryujinx.HLE/Input/HidHotkeyButtons.cs b/Ryujinx.HLE/Input/HidHotkeyButtons.cs new file mode 100644 index 00000000..7fa6ed6d --- /dev/null +++ b/Ryujinx.HLE/Input/HidHotkeyButtons.cs @@ -0,0 +1,10 @@ +using System; + +namespace Ryujinx.HLE.Input +{ + [Flags] + public enum HidHotkeyButtons + { + ToggleVSync = 1 << 0, + } +} |
