Add screenshot feature

This commit is contained in:
Such Meme, Many Skill
2020-05-03 02:00:04 +02:00
parent 6c2d0cf162
commit cb46e4bc40
5 changed files with 86 additions and 9 deletions

View File

@@ -25,7 +25,7 @@ int delfile(const char *path, const char *filename){
gfx_clearscreen();
SWAPCOLOR(COLOR_ORANGE);
gfx_printf("Are you sure you want to delete:\n%s\n\nPress B to cancel\n", filename);
if (gfx_makewaitmenu("Press A to delete", 3)){
if (gfx_makewaitmenu("Press A to delete", 2)){
f_unlink(path);
fsreader_readfolder(currentpath);
return 0;

View File

@@ -79,7 +79,7 @@ int foldermenu(){
break;
case DIR_DELETEFOLDER:
gfx_clearscreen();
if (gfx_defaultWaitMenu("Do you want to delete this folder?\nThe entire folder, with all subcontents will be deleted!!!", 4)){
if (gfx_defaultWaitMenu("Do you want to delete this folder?\nThe entire folder, with all subcontents will be deleted!", 2)){
gfx_clearscreen();
gfx_printf("\nDeleting folder, please wait...\n");