mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
Qt: Implement TAS/Movie shortcuts
This commit is contained in:
@ -162,6 +162,16 @@ void HotkeyScheduler::Run()
|
||||
|
||||
auto& settings = Settings::Instance();
|
||||
|
||||
// Recording
|
||||
if (IsHotkey(HK_START_RECORDING))
|
||||
emit StartRecording();
|
||||
|
||||
if (IsHotkey(HK_EXPORT_RECORDING))
|
||||
emit ExportRecording();
|
||||
|
||||
if (IsHotkey(HK_READ_ONLY_MODE))
|
||||
emit ToggleReadOnlyMode();
|
||||
|
||||
// Volume
|
||||
if (IsHotkey(HK_VOLUME_DOWN))
|
||||
settings.DecreaseVolume(3);
|
||||
|
Reference in New Issue
Block a user