mirror of
https://github.com/vanilla-wiiu/vanilla.git
synced 2025-01-22 08:11:47 -05:00
connect pipe closed signal to backend's
This commit is contained in:
parent
42223f55e9
commit
861a6560fe
1 changed files with 1 additions and 0 deletions
|
@ -163,6 +163,7 @@ int BackendViaInternalPipe::initInternal()
|
|||
{
|
||||
m_pipe = new BackendPipe(m_wirelessInterface, this);
|
||||
connect(m_pipe, &BackendPipe::pipeAvailable, this, &BackendViaInternalPipe::ready);
|
||||
connect(m_pipe, &BackendPipe::closed, this, &BackendViaInternalPipe::closed);
|
||||
m_pipe->start();
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue