2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-14 13:26:09 +00:00

Start integrating new controller classes

This commit is contained in:
2022-03-20 17:30:47 -07:00
parent 22c9b55300
commit e3c8fa1d8f
14 changed files with 379 additions and 165 deletions

View File

@@ -339,6 +339,7 @@ float ControlMapper::GetAnalogInput(ECommands cmd, const CFinalInput& input) {
ret = (input.*fn)();
}
}
#if 0 // TODO: reimplement this
if (const auto& kbm = input.GetKBM()) {
switch (cmd) {
case ECommands::Forward:
@@ -395,6 +396,7 @@ float ControlMapper::GetAnalogInput(ECommands cmd, const CFinalInput& input) {
}
}
}
#endif
return ret;
}