mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
HotkeyScheduler: add PlayRecording hotkey support
This hotkey was not previously implemented in the scheduler, even though it's present in the hotkey menu.
This commit is contained in:
parent
753a1595bf
commit
d5845ff281
@ -186,7 +186,13 @@ void HotkeyScheduler::Run()
|
|||||||
emit ExitHotkey();
|
emit ExitHotkey();
|
||||||
|
|
||||||
if (!Core::IsRunningAndStarted())
|
if (!Core::IsRunningAndStarted())
|
||||||
|
{
|
||||||
|
// Only check for Play Recording hotkey when no game is running
|
||||||
|
if (IsHotkey(HK_PLAY_RECORDING))
|
||||||
|
emit PlayRecording();
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
// Disc
|
// Disc
|
||||||
|
|
||||||
|
@ -47,6 +47,7 @@ signals:
|
|||||||
void StateLoadUndo();
|
void StateLoadUndo();
|
||||||
void StateSaveUndo();
|
void StateSaveUndo();
|
||||||
void StartRecording();
|
void StartRecording();
|
||||||
|
void PlayRecording();
|
||||||
void ExportRecording();
|
void ExportRecording();
|
||||||
void ToggleReadOnlyMode();
|
void ToggleReadOnlyMode();
|
||||||
void ConnectWiiRemote(int id);
|
void ConnectWiiRemote(int id);
|
||||||
|
@ -590,6 +590,7 @@ void MainWindow::ConnectHotkeys()
|
|||||||
&MainWindow::SetStateSlot);
|
&MainWindow::SetStateSlot);
|
||||||
connect(m_hotkey_scheduler, &HotkeyScheduler::StartRecording, this,
|
connect(m_hotkey_scheduler, &HotkeyScheduler::StartRecording, this,
|
||||||
&MainWindow::OnStartRecording);
|
&MainWindow::OnStartRecording);
|
||||||
|
connect(m_hotkey_scheduler, &HotkeyScheduler::PlayRecording, this, &MainWindow::OnPlayRecording);
|
||||||
connect(m_hotkey_scheduler, &HotkeyScheduler::ExportRecording, this,
|
connect(m_hotkey_scheduler, &HotkeyScheduler::ExportRecording, this,
|
||||||
&MainWindow::OnExportRecording);
|
&MainWindow::OnExportRecording);
|
||||||
connect(m_hotkey_scheduler, &HotkeyScheduler::ConnectWiiRemote, this,
|
connect(m_hotkey_scheduler, &HotkeyScheduler::ConnectWiiRemote, this,
|
||||||
|
Loading…
Reference in New Issue
Block a user