X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=altoslib%2FAltosSpeed.java;h=af63ed17ebbefb79cbaf81f6c3ca51c2da98dabb;hp=4e2daf5ad05f9e4553641a4c117c3c31c7b648d4;hb=e5a55dbf265354e7c94be3e2be53c2d5c8fba056;hpb=73d05650eae1d3958e02e9ffde2020a2438eccbb diff --git a/altoslib/AltosSpeed.java b/altoslib/AltosSpeed.java index 4e2daf5a..af63ed17 100644 --- a/altoslib/AltosSpeed.java +++ b/altoslib/AltosSpeed.java @@ -21,19 +21,19 @@ public class AltosSpeed extends AltosUnits { public double value(double v) { if (AltosConvert.imperial_units) - return AltosConvert.meters_to_mph(v); + return AltosConvert.meters_to_feet(v); return v; } public String show_units() { if (AltosConvert.imperial_units) - return "mph"; + return "ft/s"; return "m/s"; } public String say_units() { if (AltosConvert.imperial_units) - return "miles per hour"; + return "feet per second"; return "meters per second"; }