From ba994ef1d6eaea769763b7eb409156fe456edf5c Mon Sep 17 00:00:00 2001 From: Janco Kock Date: Thu, 9 Oct 2014 12:42:16 +0200 Subject: [PATCH] De clear methodes zijn nu public --- GUIboard.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/GUIboard.java b/GUIboard.java index c091975..1251598 100644 --- a/GUIboard.java +++ b/GUIboard.java @@ -194,7 +194,7 @@ public class GUIboard { } } - private static void clearTop() + public static void clearTop() { IO.writeShort(0x10, 0x100 | 0x0); IO.writeShort(0x12, 0x100 | 0x0); @@ -203,21 +203,21 @@ public class GUIboard { IO.writeShort(0x18, 0x100 | 0x0); } - private static void clearLeft() + public static void clearLeft() { IO.writeShort(0x24, 0x100 | 0x0); IO.writeShort(0x22, 0x100 | 0x0); IO.writeShort(0x20, 0x100 | 0x0); } - private static void clearRight() + public static void clearRight() { IO.writeShort(0x34, 0x100 | 0x0); IO.writeShort(0x32, 0x100 | 0x0); IO.writeShort(0x30, 0x100 | 0x0); } - private static void clearBottom() + public static void clearBottom() { IO.writeShort(0x40, 0xFE); IO.writeShort(0x40, 0x01);