Link CTweakPlayerControl

This commit is contained in:
2022-10-18 23:46:19 -04:00
parent 459d6679de
commit b45d9d9a48
4 changed files with 7 additions and 7 deletions

View File

@@ -7,7 +7,7 @@ CTweakPlayerControl::~CTweakPlayerControl() {}
rstl::reserved_vector< ControlMapper::EFunctionList, 67 > LoadMappings(CInputStream& in) {
rstl::reserved_vector< ControlMapper::EFunctionList, 67 > result;
for (int i = 0; i < result.capacity(); ++i) {
result.push_back(static_cast<ControlMapper::EFunctionList>(in.ReadLong()));
result.push_back(static_cast< ControlMapper::EFunctionList >(in.ReadLong()));
}
return result;
}
@@ -18,6 +18,6 @@ ControlMapper::EFunctionList
CTweakPlayerControl::GetMapping(ControlMapper::ECommands command) const {
if (command < ControlMapper::kC_Forward || command > ControlMapper::kC_UNKNOWN - 1)
return m_mappings[0];
return m_mappings[command];
}