ATagMX - Allow one decimal place for the bullet mass (in grams) (#6041)

Closes: #6040
This commit is contained in:
ulteq 2018-01-10 19:44:53 +01:00 committed by GitHub
parent 00ba133b21
commit a5523bc0c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ if (GVAR(currentUnit) != 2) then {
if (GVAR(currentUnit) != 2) then { if (GVAR(currentUnit) != 2) then {
ctrlSetText [110, Str(Round((GVAR(workingMemory) select 12) * 15.4323584))]; ctrlSetText [110, Str(Round((GVAR(workingMemory) select 12) * 15.4323584))];
} else { } else {
ctrlSetText [110, Str(Round(GVAR(workingMemory) select 12))]; ctrlSetText [110, Str(Round((GVAR(workingMemory) select 12) * 10) / 10)];
}; };
if (missionNamespace getVariable [QEGVAR(advanced_ballistics,enabled), false]) then { if (missionNamespace getVariable [QEGVAR(advanced_ballistics,enabled), false]) then {
ctrlSetText [120, Str(Round((GVAR(workingMemory) select 15) * 1000) / 1000)]; ctrlSetText [120, Str(Round((GVAR(workingMemory) select 15) * 1000) / 1000)];

View File

@ -25,7 +25,7 @@ if (GVAR(currentUnit) != 2) then {
if (GVAR(currentUnit) != 2) then { if (GVAR(currentUnit) != 2) then {
ctrlSetText [120010, Str(Round((GVAR(workingMemory) select 12) * 15.4323584))]; ctrlSetText [120010, Str(Round((GVAR(workingMemory) select 12) * 15.4323584))];
} else { } else {
ctrlSetText [120010, Str(Round(GVAR(workingMemory) select 12))]; ctrlSetText [120010, Str(Round((GVAR(workingMemory) select 12) * 10) / 10)];
}; };
if (GVAR(currentUnit) != 2) then { if (GVAR(currentUnit) != 2) then {
ctrlSetText [120020, Str(Round((GVAR(workingMemory) select 13) / 10 / 2.54 * 1000) / 1000)]; ctrlSetText [120020, Str(Round((GVAR(workingMemory) select 13) / 10 / 2.54 * 1000) / 1000)];