mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06: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:
@ -578,6 +578,7 @@ void MainWindow::ConnectHost()
|
|||||||
{
|
{
|
||||||
connect(Host::GetInstance(), &Host::UpdateProgressDialog, this,
|
connect(Host::GetInstance(), &Host::UpdateProgressDialog, this,
|
||||||
&MainWindow::OnUpdateProgressDialog);
|
&MainWindow::OnUpdateProgressDialog);
|
||||||
|
connect(Host::GetInstance(), &Host::RequestStop, this, &MainWindow::RequestStop);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::ConnectStack()
|
void MainWindow::ConnectStack()
|
||||||
|
Reference in New Issue
Block a user