diff --git a/common/menu-entry.c b/common/menu-entry.c index d74485b..1d4b59b 100644 --- a/common/menu-entry.c +++ b/common/menu-entry.c @@ -294,7 +294,7 @@ bool menuEntryLoad(menuEntry_s* me, const char* name, bool shortcut) { /*if (shortcut) shortcutFree(&sc);*/ } - if (me->type == ENTRY_TYPE_THEME){ + if (me->type == ENTRY_TYPE_THEME) { //Todo load in the data about the theme? //Add a theme name property to each one? diff --git a/common/menu.c b/common/menu.c index ae9ded6..8137aed 100644 --- a/common/menu.c +++ b/common/menu.c @@ -495,7 +495,7 @@ void menuLoop() { } if(active_entry != NULL) { - if (active_entry->type == ENTRY_TYPE_THEME){ + if (active_entry->type == ENTRY_TYPE_THEME) { int getX = getXCoordinate(interuiregular18, 1180, textGetString(StrId_Actions_Theme_Menu), 'r'); DrawText(interuiregular18, getX, 0 + 47, themeCurrent.textColor, textGetString(StrId_Actions_Theme_Menu)); DrawText(fontscale7, 1280 - 126 - 30 - 32, 720 - 47 + 24, themeCurrent.textColor, themeCurrent.buttonAText);