change round to fix

This commit is contained in:
Jimi 2022-09-06 15:27:51 -06:00
parent 67214039a6
commit 05a919d387

View File

@ -525,8 +525,8 @@ end function
function getDisplayBitrate(bitrate)
if bitrate > 1000000
return Str(round(bitrate / 1000000),2) + " Mbps"
return Str(Fix(bitrate / 1000000)) + " Mbps"
else
return Str(round(bitrate / 1000)) + " Kbps"
return Str(Fix(bitrate / 1000)) + " Kbps"
end if
end function