浏览代码

Refixed navigation showing

Kenneth van Ewijk 11 年之前
父节点
当前提交
c9e68a1de5
共有 1 个文件被更改,包括 8 次插入1 次删除
  1. 8 1
      WindDirection.java

+ 8 - 1
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;