From 3218e4287f503b166d749f4f91f8cd1c49ed54af Mon Sep 17 00:00:00 2001
From: Rahix <rahix@rahix.de>
Date: Sun, 21 Jul 2019 23:04:55 +0200
Subject: [PATCH] fix(gfx): Disable a debug message which slows down drawing

Signed-off-by: Rahix <rahix@rahix.de>
---
 lib/gfx/GUI_DEV/GUI_Paint.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/gfx/GUI_DEV/GUI_Paint.c b/lib/gfx/GUI_DEV/GUI_Paint.c
index 00be9e8a..13cbba25 100644
--- a/lib/gfx/GUI_DEV/GUI_Paint.c
+++ b/lib/gfx/GUI_DEV/GUI_Paint.c
@@ -221,7 +221,7 @@ void Paint_DrawPoint(UWORD Xpoint, UWORD Ypoint, UWORD Color,
                      DOT_PIXEL Dot_Pixel, DOT_STYLE DOT_STYLE)
 {
     if (Xpoint > Paint.Width || Ypoint > Paint.Height) {
-        Debug("Paint_DrawPoint Input exceeds the normal display range\r\n");
+        // Debug("Paint_DrawPoint Input exceeds the normal display range\r\n");
         return;
     }
 
-- 
GitLab