mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
DolphinQt: Connect Host::RequestStop() to MainWindow::RequestStop()
The fact that this wasn't connected was causing fifoplayer to hang if looping was disabled.
This commit is contained in:
parent
363ce67459
commit
31a5dd15a9
1 changed files with 1 additions and 0 deletions
|
@ -578,6 +578,7 @@ void MainWindow::ConnectHost()
|
|||
{
|
||||
connect(Host::GetInstance(), &Host::UpdateProgressDialog, this,
|
||||
&MainWindow::OnUpdateProgressDialog);
|
||||
connect(Host::GetInstance(), &Host::RequestStop, this, &MainWindow::RequestStop);
|
||||
}
|
||||
|
||||
void MainWindow::ConnectStack()
|
||||
|
|
Loading…
Add table
Reference in a new issue