Skip to content

Commit

Permalink
Add missing menu function definitions.
Browse files Browse the repository at this point in the history
  • Loading branch information
skawo committed Dec 19, 2021
1 parent 481a811 commit 317aaec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions inc/menu.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,7 @@ extern int text_offset;
void printText(char *msg, int x, int y, display_context_t dcon);

void menu_about(display_context_t disp);
void menu_controls(display_context_t disp);
void menu_delete(display_context_t disp, bool isdir);

#endif
1 change: 0 additions & 1 deletion src/menu_delete.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,5 @@ void menu_delete(display_context_t disp, bool isdir)
printText("Delete this file?", 10, 14, disp);
printText("A: Confirm", 13, 16, disp);
printText("B: Cancel", 13, 17, disp);

}
}

0 comments on commit 317aaec

Please sign in to comment.