AnalogController: Add analog toggle button

This commit is contained in:
Connor McLaughlin
2020-05-08 15:13:05 +10:00
parent 5b389ae13d
commit 95468901f2
4 changed files with 53 additions and 16 deletions

View File

@ -46,7 +46,7 @@ std::unique_ptr<Controller> Controller::Create(System* system, ControllerType ty
return DigitalController::Create();
case ControllerType::AnalogController:
return AnalogController::Create();
return AnalogController::Create(system);
case ControllerType::NamcoGunCon:
return NamcoGunCon::Create(system);