implemented low battery warning

thanks to eggs owl overlay examples and BlackSeraph's uImage mods
This commit is contained in:
Shaun Inman 2023-02-26 00:23:35 -05:00
parent bec0e5182c
commit c2c8f2d067
6 changed files with 256 additions and 42 deletions

View file

@ -1167,6 +1167,7 @@ int main (int argc, char *argv[]) {
LOG_info("MinUI\n");
SDL_Surface* screen = GFX_init(MODE_MAIN);
POW_init();
InitSettings();
PAD_reset();
@ -1487,6 +1488,7 @@ int main (int argc, char *argv[]) {
SDL_FreeSurface(screen);
Menu_quit();
POW_quit();
GFX_quit();
QuitSettings();
}