Adds an elapsed tick multiplier feature which speeds up games which are built upon delta time. More information: https://web.archive.org/web/20240713135029/https://github.com/Ryujinx/Ryujinx/pull/6456
20 lines
366 B
C#
20 lines
366 B
C#
namespace Ryujinx.Ava.Common
|
|
{
|
|
public enum KeyboardHotkeyState
|
|
{
|
|
None,
|
|
ToggleVSyncMode,
|
|
Screenshot,
|
|
ShowUI,
|
|
Pause,
|
|
ToggleMute,
|
|
ResScaleUp,
|
|
ResScaleDown,
|
|
VolumeUp,
|
|
VolumeDown,
|
|
CustomVSyncIntervalIncrement,
|
|
CustomVSyncIntervalDecrement,
|
|
TurboMode,
|
|
}
|
|
}
|