mirror of
https://github.com/crskycode/GARbro.git
synced 2026-06-06 05:38:48 +08:00
(MBL): ignore filename case.
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user