From f831de9c23c05027c0e5af95139b8ed8b1ffcf41 Mon Sep 17 00:00:00 2001 From: Steven Tracey Date: Wed, 20 Nov 2024 08:47:32 -0500 Subject: [PATCH] Semicolons --- c/libs/GUI/GUI_Paint.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/c/libs/GUI/GUI_Paint.c b/c/libs/GUI/GUI_Paint.c index 1c751d0..5138dde 100644 --- a/c/libs/GUI/GUI_Paint.c +++ b/c/libs/GUI/GUI_Paint.c @@ -571,11 +571,11 @@ void Paint_DrawString(UWORD Xstart, UWORD Ystart, const char * pString, UWORD Ypoint = Ystart; Debug("Width: "); - Debug(Paint.Width) - Debug("\n") - Debug("Height: ") - Debug(Paint.Height) - Debug("\n") + Debug(Paint.Width); + Debug("\n"); + Debug("Height: "); + Debug(Paint.Height); + Debug("\n"); if (Xstart > Paint.Width || Ystart > Paint.Height) { Debug("Paint_DrawString_EN Input exceeds the normal display range\r\n");