Skip to content

Commit

Permalink
Fix typo in "Boost Pressure" PGN payload
Browse files Browse the repository at this point in the history
Should be "Boost Pressure", not "Boost Presure".
  • Loading branch information
smr547 authored and tkurki committed Jan 5, 2022
1 parent 368c7bb commit 0a47f93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conversions/engineParameters.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ module.exports = (app, plugin) => {
"Engine Instance": engine.instanceId,
"Instance": engine.instanceId,
"Speed": revolutions === null ? undefined : revolutions * 60,
"Boost Presure": boostPressure === null ? undefined : boostPressure / 100,
"Boost Pressure": boostPressure === null ? undefined : boostPressure / 100,
"Tilt/Trim": trimState === null ? undefined : trimState * 100
}]
}
Expand Down

0 comments on commit 0a47f93

Please sign in to comment.