mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Truncate speed values to 2 DP
This commit is contained in:
parent
c3329ca8fc
commit
7a45c6543e
@ -36,7 +36,7 @@ if (GVAR(camMode) == 0) then {
|
||||
_depth = format ["%1 m", floor(getPosASL GVAR(camera) select 2)];
|
||||
_fov = format ["%1x", floor(GVAR(camZoom) * 100) * 0.01];
|
||||
_name = localize "STR_VOICE_MASK_NONE";
|
||||
_speed = format ["%1 m/s", GVAR(camSpeed)];
|
||||
_speed = format ["%1 m/s", floor(GVAR(camSpeed) * 100) * 0.01];
|
||||
} else {
|
||||
_depth = format ["%1 m", floor(getPosASL GVAR(camUnit) select 2)];
|
||||
_fov = WFSideText (group GVAR(camUnit));
|
||||
|
Loading…
Reference in New Issue
Block a user