Skip to content
Snippets Groups Projects
Verified Commit 3218e428 authored by rahix's avatar rahix
Browse files

fix(gfx): Disable a debug message which slows down drawing


Signed-off-by: default avatarRahix <rahix@rahix.de>
parent 4a292ac0
Branches master
No related tags found
No related merge requests found
...@@ -221,7 +221,7 @@ void Paint_DrawPoint(UWORD Xpoint, UWORD Ypoint, UWORD Color, ...@@ -221,7 +221,7 @@ void Paint_DrawPoint(UWORD Xpoint, UWORD Ypoint, UWORD Color,
DOT_PIXEL Dot_Pixel, DOT_STYLE DOT_STYLE) DOT_PIXEL Dot_Pixel, DOT_STYLE DOT_STYLE)
{ {
if (Xpoint > Paint.Width || Ypoint > Paint.Height) { 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; return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment