mirror of
https://github.com/crskycode/GARbro.git
synced 2025-01-11 12:39:16 +08:00
(MBL): ignore filename case.
This commit is contained in:
parent
d604258e93
commit
02850219cf
@ -95,7 +95,7 @@ namespace GameRes.Formats.Marble
|
||||
return null;
|
||||
try
|
||||
{
|
||||
bool contains_scripts = Path.GetFileNameWithoutExtension (file.Name).EndsWith ("_data");
|
||||
bool contains_scripts = Path.GetFileNameWithoutExtension (file.Name).EndsWith ("_data", StringComparison.OrdinalIgnoreCase);
|
||||
var dir = new List<Entry> (count);
|
||||
for (int i = 0; i < count; ++i)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user