Add missing menu function definitions.

This commit is contained in:
skawo 2021-12-19 19:21:46 +01:00
parent 481a811b04
commit 317aaec5ee
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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);
}
}