Controller: Add emulation of Namco GunCon

This commit is contained in:
Connor McLaughlin
2020-04-26 01:18:42 +10:00
parent 2026ef99e8
commit e6bd6587fd
11 changed files with 320 additions and 7 deletions

View File

@ -50,7 +50,7 @@ bool Pad::DoState(StateWrapper& sw)
m_controllers[i].reset();
if (state_controller_type != ControllerType::None)
m_controllers[i] = Controller::Create(state_controller_type);
m_controllers[i] = Controller::Create(m_system, state_controller_type);
}
if (m_controllers[i])