Skip to content

Commit

Permalink
[Bugfix] Fixed a typo in the turbo torque calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
ulteq committed Feb 11, 2016
1 parent ef76568 commit 89addaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/main/gameplay/BeamEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1156,7 +1156,7 @@ float BeamEngine::getTurboPower()
{
for (int i = 0; i < numTurbos; i++)
{
atValue = EngineAddiTorque[i] * (curTurboRPM[i] / maxTurboRPM);
atValue += EngineAddiTorque[i] * (curTurboRPM[i] / maxTurboRPM);
}
} else
{
Expand Down

0 comments on commit 89addaa

Please sign in to comment.