Stop converting all names to uppercase.

This commit is contained in:
caitsith2 2018-08-26 00:18:57 -07:00 committed by Alex Barney
parent 31ac12d33d
commit 02d2341b6e

View file

@ -414,7 +414,7 @@ namespace DiscUtils.Fat
validChecksum = false;
break;
}
sb.Append(slot.Name.ToUpperInvariant());
sb.Append(slot.Name);
}
if (validChecksum)