mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-27 15:44:00 +08:00
(noncolor): don't lower case filenames when reading file list.
This commit is contained in:
parent
a63456338d
commit
974082076c
@ -194,7 +194,7 @@ namespace GameRes.Formats.NonColor
|
||||
{
|
||||
var dict = new Dictionary<ulong, NameRecord>();
|
||||
FormatCatalog.Instance.ReadFileList (scheme.FileListName, line => {
|
||||
var bytes = line.ToLowerShiftJis();
|
||||
var bytes = Encodings.cp932.GetBytes (line); // line.ToLowerShiftJis();
|
||||
ulong hash = scheme.ComputeHash (bytes);
|
||||
dict[hash] = new NameRecord { Name = line, NameBytes = bytes };
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user