input_common: Add android input engine

This commit is contained in:
Narr the Reg 2024-01-17 22:01:33 -06:00
parent 12979632a2
commit 7382c0e0dd
6 changed files with 136 additions and 0 deletions

View file

@ -210,6 +210,9 @@ bool MappingFactory::IsDriverValid(const MappingData& data) const {
if (data.engine == "analog_from_button") {
return false;
}
if (data.engine == "virtual_gamepad") {
return false;
}
return true;
}