added spaces to areas in code to have coding conformity

This commit is contained in:
NightlyFox 2018-09-22 20:40:06 -05:00
parent b0c5a82717
commit 28804291e5
2 changed files with 2 additions and 2 deletions

View File

@ -294,7 +294,7 @@ bool menuEntryLoad(menuEntry_s* me, const char* name, bool shortcut) {
/*if (shortcut) /*if (shortcut)
shortcutFree(&sc);*/ shortcutFree(&sc);*/
} }
if (me->type == ENTRY_TYPE_THEME){ if (me->type == ENTRY_TYPE_THEME) {
//Todo load in the data about the theme? //Todo load in the data about the theme?
//Add a theme name property to each one? //Add a theme name property to each one?

View File

@ -495,7 +495,7 @@ void menuLoop() {
} }
if(active_entry != NULL) { 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'); int getX = getXCoordinate(interuiregular18, 1180, textGetString(StrId_Actions_Theme_Menu), 'r');
DrawText(interuiregular18, getX, 0 + 47, themeCurrent.textColor, textGetString(StrId_Actions_Theme_Menu)); 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); DrawText(fontscale7, 1280 - 126 - 30 - 32, 720 - 47 + 24, themeCurrent.textColor, themeCurrent.buttonAText);