Ryujinx/Ryujinx.Ava/Common/KeyboardHotkeyState.cs
MutantAura 62f8ceb60b
Resolution scaling hotkeys (#3185)
* hotkeys

* comments

* update implementation to include custom scales

* copypasta

* review changes

* hotkeys

* comments

* update implementation to include custom scales

* copypasta

* review changes

* Remove outdated configuration and force hotkeys unbound

* Add avalonia support

* Fix configuration file

* Update GTK implementation and fix config... again.

* Remove legacy implementation + nits

* Avalonia locales (DeepL)

* review

* Remove colon from chinese locale

* Update ConfigFile

* locale fix
2022-07-24 15:44:47 -03:00

14 lines
230 B
C#

namespace Ryujinx.Ava.Common
{
public enum KeyboardHotkeyState
{
None,
ToggleVSync,
Screenshot,
ShowUi,
Pause,
ToggleMute,
ResScaleUp,
ResScaleDown
}
}