From adb926a5e7f37bdebf6672a4e8e0d4e3b41c0b40 Mon Sep 17 00:00:00 2001 From: Charlez Kwan Date: Wed, 15 Jan 2020 18:03:32 +0100 Subject: [PATCH] GUI_Paint.c : comment out the display of seconds in Paint_DrawTime --- User/GUI/GUI_Paint.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/User/GUI/GUI_Paint.c b/User/GUI/GUI_Paint.c index 23bdde7..6aec711 100644 --- a/User/GUI/GUI_Paint.c +++ b/User/GUI/GUI_Paint.c @@ -671,9 +671,9 @@ void Paint_DrawTime(UWORD Xstart, UWORD Ystart, PAINT_TIME *pTime, sFONT* Font, Paint_DrawChar(Xstart + Dx + Dx / 4 + Dx / 2 , Ystart, ':' , Font, Color_Background, Color_Foreground); Paint_DrawChar(Xstart + Dx * 2 + Dx / 2 , Ystart, value[pTime->Min / 10] , Font, Color_Background, Color_Foreground); Paint_DrawChar(Xstart + Dx * 3 + Dx / 2 , Ystart, value[pTime->Min % 10] , Font, Color_Background, Color_Foreground); - Paint_DrawChar(Xstart + Dx * 4 + Dx / 2 - Dx / 4, Ystart, ':' , Font, Color_Background, Color_Foreground); - Paint_DrawChar(Xstart + Dx * 5 , Ystart, value[pTime->Sec / 10] , Font, Color_Background, Color_Foreground); - Paint_DrawChar(Xstart + Dx * 6 , Ystart, value[pTime->Sec % 10] , Font, Color_Background, Color_Foreground); +// Paint_DrawChar(Xstart + Dx * 4 + Dx / 2 - Dx / 4, Ystart, ':' , Font, Color_Background, Color_Foreground); +// Paint_DrawChar(Xstart + Dx * 5 , Ystart, value[pTime->Sec / 10] , Font, Color_Background, Color_Foreground); +// Paint_DrawChar(Xstart + Dx * 6 , Ystart, value[pTime->Sec % 10] , Font, Color_Background, Color_Foreground); } /******************************************************************************