mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-22 20:33:07 +00:00
btdrv-mitm: actually create handler for ipega controller when detected
This commit is contained in:
parent
d9d4e825b2
commit
b27fe5e07a
1 changed files with 3 additions and 0 deletions
|
@ -126,6 +126,9 @@ namespace ams::controller {
|
|||
case ControllerType_Ouya:
|
||||
g_controllers.push_back(std::make_unique<OuyaController>(address));
|
||||
break;
|
||||
case ControllerType_Ipega:
|
||||
g_controllers.push_back(std::make_unique<IpegaController>(address));
|
||||
break;
|
||||
default:
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue