mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-03 18:17:44 +02:00

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
19 lines
366 B
C#
19 lines
366 B
C#
namespace Ryujinx.Ava.Common
|
|
{
|
|
public enum KeyboardHotkeyState
|
|
{
|
|
None,
|
|
ToggleVSyncMode,
|
|
Screenshot,
|
|
ShowUI,
|
|
Pause,
|
|
ToggleMute,
|
|
ResScaleUp,
|
|
ResScaleDown,
|
|
VolumeUp,
|
|
VolumeDown,
|
|
CustomVSyncIntervalIncrement,
|
|
CustomVSyncIntervalDecrement,
|
|
TurboMode,
|
|
}
|
|
}
|