Skip to content

Commit

Permalink
Merge pull request #6677 from 404-Name-Not-Found/master
Browse files Browse the repository at this point in the history
Fix test rumble feature in controller configuration
  • Loading branch information
Helios747 committed May 11, 2018
2 parents 968779e + 3e4725f commit f0c5b76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/InputCommon/ControlReference/ControlReference.cpp
Expand Up @@ -105,8 +105,8 @@ ControlState InputReference::State(const ControlState ignore)
// //
ControlState OutputReference::State(const ControlState state) ControlState OutputReference::State(const ControlState state)
{ {
if (m_parsed_expression && InputGateOn()) if (m_parsed_expression)
m_parsed_expression->SetValue(state); m_parsed_expression->SetValue(state * range);
return 0.0; return 0.0;
} }


Expand Down

0 comments on commit f0c5b76

Please sign in to comment.