THis fixes issue #08 and #16, the rumble test and slider

This commit is contained in:
Connor Roth 2018-04-19 17:47:11 -04:00
parent a500347345
commit 3e4725f390
1 changed files with 2 additions and 2 deletions

View File

@ -105,8 +105,8 @@ ControlState InputReference::State(const ControlState ignore)
//
ControlState OutputReference::State(const ControlState state)
{
if (m_parsed_expression && InputGateOn())
m_parsed_expression->SetValue(state);
if (m_parsed_expression)
m_parsed_expression->SetValue(state * range);
return 0.0;
}