Create function to zero gFrameBuffer

Size: 60464 -> 60420
This commit is contained in:
Juan Antonio
2023-12-25 01:24:47 +01:00
committed by egzumer
parent f8ef687026
commit 78a45d9bbd
9 changed files with 17 additions and 11 deletions

View File

@@ -252,4 +252,9 @@ void UI_DisplayPopup(const char *string)
// DrawRectangle(9,9, 118,38, true);
UI_PrintString(string, 9, 118, 2, 8);
UI_PrintStringSmall("Press EXIT", 9, 118, 6);
}
}
void UI_DisplayClear()
{
memset(gFrameBuffer, 0, sizeof(gFrameBuffer));
}