Fixes 3WH computation with ECE and CWR flags

Fixes #3255
This commit is contained in:
Simone Mainardi 2020-01-20 11:53:38 +01:00
parent 75ec3a246c
commit ca2322531c
3 changed files with 17 additions and 9 deletions

View file

@ -79,7 +79,7 @@ function format_utils.msToTime(ms)
if(ms < 1) then
return("< 1 ms")
else
return(round(ms, 4).." ms")
return(round(ms, 2).." ms")
end
end
end