Skip to content

Commit

Permalink
Finally fix GW downgraded NANDs (thanks GW for the easily recognizabl…
Browse files Browse the repository at this point in the history
…e junk)
  • Loading branch information
AuroraWright committed Sep 18, 2016
1 parent c4e5f44 commit d7bdf3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/fs.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d7bdf3f

Please sign in to comment.