Skip to content

Commit

Permalink
Use < and > in menus
Browse files Browse the repository at this point in the history
  • Loading branch information
myfluxi committed Mar 16, 2012
1 parent 024fc12 commit 040a4ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui.c
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ void ui_reset_text_col()
pthread_mutex_unlock(&gUpdateMutex);
}

#define MENU_ITEM_HEADER " - "
#define MENU_ITEM_HEADER " > "
#define MENU_ITEM_HEADER_LENGTH strlen(MENU_ITEM_HEADER)

int ui_start_menu(char** headers, char** items, int initial_selection) {
Expand All @@ -841,7 +841,7 @@ int ui_start_menu(char** headers, char** items, int initial_selection) {
}

if (gShowBackButton && ui_menu_level > 0) {
strcpy(menu[i], " - +++++Go Back+++++");
strcpy(menu[i], " < Go Back");
++i;
}

Expand Down

0 comments on commit 040a4ac

Please sign in to comment.