Qt: Disable Normal link, it doesn't work and breaks GBP

This commit is contained in:
Jeffrey Pfau 2016-09-14 20:51:22 -07:00
parent 61800d0e9b
commit e28782900d
1 changed files with 0 additions and 2 deletions

View File

@ -144,7 +144,6 @@ bool MultiplayerController::attachGame(GameController* controller) {
});
GBASIOSetDriver(&gba->sio, &node->d, SIO_MULTI);
GBASIOSetDriver(&gba->sio, &node->d, SIO_NORMAL_32);
emit gameAttached();
return true;
@ -167,7 +166,6 @@ void MultiplayerController::detachGame(GameController* controller) {
GBA* gba = static_cast<GBA*>(thread->core->board);
GBASIOLockstepNode* node = reinterpret_cast<GBASIOLockstepNode*>(gba->sio.drivers.multiplayer);
GBASIOSetDriver(&gba->sio, nullptr, SIO_MULTI);
GBASIOSetDriver(&gba->sio, nullptr, SIO_NORMAL_32);
if (node) {
GBASIOLockstepDetachNode(&m_lockstep, node);
delete node;