From d7bdf3fc19ec4af31331f262f8a224fdacd13fab Mon Sep 17 00:00:00 2001 From: Aurora Date: Sun, 18 Sep 2016 13:29:23 +0200 Subject: [PATCH] Finally fix GW downgraded NANDs (thanks GW for the easily recognizable junk) --- source/fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/fs.c b/source/fs.c index 3d27a93..83ca4fa 100644 --- a/source/fs.c +++ b/source/fs.c @@ -169,7 +169,7 @@ u32 firmRead(void *dest, u32 firmType) while(f_readdir(&dir, &info) == FR_OK && info.fname[0]) { //Not a cxi - if(info.altname[9] != 'A') continue; + if(info.fname[9] != 'a') continue; //Convert the .app name to an integer u32 tempVersion = 0;