Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS will be completely phased out by mid-2025. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit f4561553 authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

Merge pull request #221 in VECTO/vecto-sim from...

Merge pull request #221 in VECTO/vecto-sim from ~EMQUARIMA/vecto-sim:hotfix/VECTO-310-vecto-vehicle-file-in-decleration to master

* commit 'bb3a7a3e':
  GUI: only check sum of axle loads in engineering mode
parents c977023f bb3a7a3e
No related branches found
No related tags found
No related merge requests found
......@@ -451,7 +451,7 @@ Public Class F_VEH
Next
If Math.Abs(axleShareCheck - 1) > 0.000001 Then
If Not Cfg.DeclMode AndAlso Math.Abs(axleShareCheck - 1) > 0.000001 Then
MsgBox("Relative axle loads must sum up to 1.0. Current value: " & axleShareCheck, MsgBoxStyle.Critical)
Return False
End If
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment