From c9e68a1de59455267049cfe136589c95d4b2fc1d Mon Sep 17 00:00:00 2001 From: Kenneth van Ewijk Date: Thu, 23 Oct 2014 11:20:32 +0200 Subject: [PATCH] Refixed navigation showing --- WindDirection.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/WindDirection.java b/WindDirection.java index 6037120..f827ca9 100644 --- a/WindDirection.java +++ b/WindDirection.java @@ -20,7 +20,14 @@ public class WindDirection extends Grootheid{ public void displayGraph() { - GUIboard.writePageToMatrix("", "West East", ""); + GUIboard.clearBottom(); + char[] charray = " West East".toCharArray(); + + IO.writeShort(0x40, '\n'); + for(char ch : charray) + { + IO.writeShort(0x40, ch); + } int x,y; int radius = 15;