fix missing function update

This commit is contained in:
Jacob Dahl 2025-07-09 15:05:59 -08:00 committed by Alex Klimaj
parent 09ebd21e55
commit ce4dfaf39a
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ bool GZMixingInterfaceWheel::init(const std::string &model_name)
return true;
}
bool GZMixingInterfaceWheel::updateOutputs(bool stop_wheels, uint16_t outputs[MAX_ACTUATORS], unsigned num_outputs,
bool GZMixingInterfaceWheel::updateOutputs(uint16_t outputs[MAX_ACTUATORS], unsigned num_outputs,
unsigned num_control_groups_updated)
{
unsigned active_output_count = 0;

View File

@ -56,7 +56,7 @@ public:
_node(node)
{}
bool updateOutputs(bool stop_wheels, uint16_t outputs[MAX_ACTUATORS],
bool updateOutputs(uint16_t outputs[MAX_ACTUATORS],
unsigned num_outputs, unsigned num_control_groups_updated) override;
MixingOutput &mixingOutput() { return _mixing_output; }