From 99c2abeaf346bf069ec9a52707df8dbc1725c66b Mon Sep 17 00:00:00 2001 From: suchmememanyskill Date: Tue, 5 Jan 2021 19:42:15 +0100 Subject: [PATCH] not all gpt entries are all caps --- source/storage/gptmenu.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/source/storage/gptmenu.c b/source/storage/gptmenu.c index 0451cb5..d5d2474 100644 --- a/source/storage/gptmenu.c +++ b/source/storage/gptmenu.c @@ -84,11 +84,6 @@ void GptMenu(u8 MMCType){ gfx_clearscreen(); char *fileName = CpyStr(strrchr(TConf.srcCopy, '/') + 1); - for (int i = 0; i < strlen(fileName); i++){ - if (fileName[i] >= 'a' && fileName[i] <= 'z') - fileName[i] &= ~BIT(5); - } - gfx_printf("Are you sure you want to flash %s? ", fileName); if (MakeYesNoHorzMenu(3, COLOR_DEFAULT)){ RESETCOLOR;