mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-30 00:08:34 +00:00
ControllerInterface/Android: Implement device population
This commit is contained in:
parent
68ebb5c33e
commit
792cb62195
4 changed files with 612 additions and 4 deletions
|
@ -67,7 +67,7 @@ void ControllerInterface::Initialize(const WindowSystemInfo& wsi)
|
|||
m_input_backends.emplace_back(ciface::SDL::CreateInputBackend(this));
|
||||
#endif
|
||||
#ifdef CIFACE_USE_ANDROID
|
||||
// nothing needed
|
||||
ciface::Android::Init();
|
||||
#endif
|
||||
#ifdef CIFACE_USE_EVDEV
|
||||
m_input_backends.emplace_back(ciface::evdev::CreateInputBackend(this));
|
||||
|
@ -237,7 +237,7 @@ void ControllerInterface::Shutdown()
|
|||
ciface::Quartz::DeInit();
|
||||
#endif
|
||||
#ifdef CIFACE_USE_ANDROID
|
||||
// nothing needed
|
||||
ciface::Android::Shutdown();
|
||||
#endif
|
||||
|
||||
// Empty the container of input backends to deconstruct and deinitialize them.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue