case sensitivity

This commit is contained in:
Steven Tracey 2024-11-21 15:17:42 -05:00
parent 84b99becb0
commit 4e360aed7d

View File

@ -58,10 +58,10 @@ void code(UWORD *blackImage) {
Paint_DrawString(5, 5, code, &Font36, WHITE, BLACK);
Paint_DrawRectangle(10, 112, 240, 92, WHITE, DOT_PIXEL_1X1, DRAW_FILL_EMPTY);
EPD_2in13_V4_Display_Base(BlackImage);
EPD_2in13_V4_Display_Base(blackImage);
Paint_NewImage(BlackImage, EPD_2in13_V4_WIDTH, EPD_2in13_V4_HEIGHT, 90, WHITE);
Paint_SelectImage(BlackImage);
Paint_NewImage(blackImage, EPD_2in13_V4_WIDTH, EPD_2in13_V4_HEIGHT, 90, WHITE);
Paint_SelectImage(blackImage);
clock_t startTime;
clock_t endTime;
@ -85,7 +85,7 @@ void code(UWORD *blackImage) {
LINE_STYLE_SOLID);
++progBarCurrentIndex;
}
EPD_2in13_V4_Display_Partial(BlackImage);
EPD_2in13_V4_Display_Partial(blackImage);
endTime = clock();
elapsedTime = (int) ((endTime - startTime) / CLOCKS_PER_SEC);
Debug("Elapsed Time %d\n", elapsedTime);