Fix "modifier" button functionality et al.

This commit is contained in:
Jordan Woyak 2013-09-11 17:48:04 -05:00
parent 3fcdf5e25b
commit ce49964dfe
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ bool ControllerInterface::UpdateOutput(const bool force)
ControlState ControllerInterface::InputReference::State( const ControlState ignore )
{
if (parsed_expression)
return parsed_expression->GetValue();
return parsed_expression->GetValue() * range;
else
return 0.0f;
}