From 0c039e03c37a07206e82bc2ba5ffef25f1913635 Mon Sep 17 00:00:00 2001 From: bleck9999 <55853712+bleck9999@users.noreply.github.com> Date: Tue, 28 Apr 2020 19:36:31 +0100 Subject: [PATCH 1/4] destenation --- source/tegraexplorer/emmc/emmcrestorepart.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/tegraexplorer/emmc/emmcrestorepart.c b/source/tegraexplorer/emmc/emmcrestorepart.c index 8a52fdc..beda529 100644 --- a/source/tegraexplorer/emmc/emmcrestorepart.c +++ b/source/tegraexplorer/emmc/emmcrestorepart.c @@ -57,7 +57,7 @@ int emmcRestorePart(char *path, sdmmc_storage_t *mmcstorage, emmc_part_t *part){ if (totalSize < totalSizeDest){ SWAPCOLOR(COLOR_ORANGE); - gfx_printf("File is too small for destenation.\nDo you want to flash it anyway?\n\nVol +/- to Cancel\n"); + gfx_printf("File is too small for destination.\nDo you want to flash it anyway?\n\nVol +/- to Cancel\n"); u8 btnres = gfx_makewaitmenu( "Power to Confirm", 2 @@ -210,7 +210,7 @@ emmc_part_t *mmcFindPart(char *path, short mmcType){ //gfx_printf("Path: %s\nFilename: %s", path, filename); //btn_wait(); - gfx_errDisplay("mmcFindPart", ERR_NO_DESTENATION, 2); + gfx_errDisplay("mmcFindPart", ERR_NO_DESTINATION, 2); free(path_local); return NULL; } @@ -226,4 +226,4 @@ int mmcFlashFile(char *path, short mmcType){ return res; } return 1; -} \ No newline at end of file +} From ab4e88f1de962e4e901a04bc1960542e97fb018d Mon Sep 17 00:00:00 2001 From: bleck9999 <55853712+bleck9999@users.noreply.github.com> Date: Tue, 28 Apr 2020 19:36:40 +0100 Subject: [PATCH 2/4] destenation --- source/tegraexplorer/common/strings.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/tegraexplorer/common/strings.c b/source/tegraexplorer/common/strings.c index d90dac7..7f414d0 100644 --- a/source/tegraexplorer/common/strings.c +++ b/source/tegraexplorer/common/strings.c @@ -52,7 +52,7 @@ const char *utils_err_codes_te[] = { // these start at 50 "SD EJECTED", "PARSING FAILED", "CANNOT COPY FILE TO FS PART", - "NO DESTENATION" + "NO DESTINATION" }; /* const char *pkg2names[] = { @@ -64,4 +64,4 @@ const char *pkg2names[] = { "BCPKG2-6-Repair-Sub" }; */ -const char *mainmenu_credits = "\nTegraexplorer, made by:\nSuch Meme, Many Skill\n\nProject based on:\nLockpick_RCM\nHekate\n\nCool people:\nshchmue\ndennthecafebabe\nDax"; \ No newline at end of file +const char *mainmenu_credits = "\nTegraexplorer, made by:\nSuch Meme, Many Skill\n\nProject based on:\nLockpick_RCM\nHekate\n\nCool people:\nshchmue\ndennthecafebabe\nDax"; From a3d4636d846b09d699cf237e2a64457c40671d66 Mon Sep 17 00:00:00 2001 From: bleck9999 <55853712+bleck9999@users.noreply.github.com> Date: Tue, 28 Apr 2020 19:52:21 +0100 Subject: [PATCH 3/4] destenation --- source/tegraexplorer/common/common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/tegraexplorer/common/common.h b/source/tegraexplorer/common/common.h index 6561e4e..e03bac2 100644 --- a/source/tegraexplorer/common/common.h +++ b/source/tegraexplorer/common/common.h @@ -23,7 +23,7 @@ enum utils_err_codes_te_call { ERR_SD_EJECTED, ERR_PARSE_FAIL, ERR_CANNOT_COPY_FILE_TO_FS_PART, - ERR_NO_DESTENATION + ERR_NO_DESTINATION }; extern const char *utils_err_codes_te[]; @@ -110,4 +110,4 @@ extern gpt_entry_rule gpt_fs_rules[]; extern menu_entry mmcmenu_start[]; -extern menu_entry mmcmenu_filemenu[]; \ No newline at end of file +extern menu_entry mmcmenu_filemenu[]; From 6ee5c8cb5fdb89e098554816f655f35793629f07 Mon Sep 17 00:00:00 2001 From: bleck9999 <55853712+bleck9999@users.noreply.github.com> Date: Tue, 28 Apr 2020 19:54:17 +0100 Subject: [PATCH 4/4] destenation --- source/tegraexplorer/gfx/gfxutils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/tegraexplorer/gfx/gfxutils.c b/source/tegraexplorer/gfx/gfxutils.c index dec88e6..7e19354 100644 --- a/source/tegraexplorer/gfx/gfxutils.c +++ b/source/tegraexplorer/gfx/gfxutils.c @@ -54,7 +54,7 @@ int gfx_errDisplay(char *src_func, int err, int loc){ if (err < 15) gfx_printf("Desc: %s\n", utils_err_codes[err]); - else if (err >= ERR_SAME_LOC && err <= ERR_NO_DESTENATION) + else if (err >= ERR_SAME_LOC && err <= ERR_NO_DESTINATION) gfx_printf("Desc: %s\n", utils_err_codes_te[err - 50]); if (loc) @@ -136,4 +136,4 @@ void gfx_printfilesize(int size, char *type){ SWAPCOLOR(COLOR_VIOLET); gfx_printf("\a%4d\e%s", size, type); RESETCOLOR; -} \ No newline at end of file +}