From 50d6ec9efe7911c8dbadec0aba905817c5903f08 Mon Sep 17 00:00:00 2001 From: BaronKiko Date: Mon, 22 Apr 2019 07:54:31 +0100 Subject: 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 --- Ryujinx.HLE/Input/HidHotkeyButtons.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Ryujinx.HLE/Input/HidHotkeyButtons.cs (limited to 'Ryujinx.HLE/Input') 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, + } +} -- cgit v1.2.3