summaryrefslogtreecommitdiff
path: root/ao-tools/altosui/AltosDisplayThread.java
diff options
context:
space:
mode:
Diffstat (limited to 'ao-tools/altosui/AltosDisplayThread.java')
-rw-r--r--ao-tools/altosui/AltosDisplayThread.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/ao-tools/altosui/AltosDisplayThread.java b/ao-tools/altosui/AltosDisplayThread.java
index b5b2777e..375965b9 100644
--- a/ao-tools/altosui/AltosDisplayThread.java
+++ b/ao-tools/altosui/AltosDisplayThread.java
@@ -69,8 +69,10 @@ public class AltosDisplayThread extends Thread {
state.state < Altos.ao_flight_landed &&
state.range >= 0)
{
- voice.speak("Height %d, bearing %d, elevation %d, range %d.\n",
+ voice.speak("Height %d, bearing %s %d, elevation %d, range %d.\n",
(int) (state.height + 0.5),
+ state.from_pad.bearing_words(
+ AltosGreatCircle.BEARING_VOICE),
(int) (state.from_pad.bearing + 0.5),
(int) (state.elevation + 0.5),
(int) (state.range + 0.5));