From 02850219cfca4e40fdd6e64d527560244156f733 Mon Sep 17 00:00:00 2001 From: morkt Date: Sat, 29 Dec 2018 22:28:44 +0400 Subject: [PATCH] (MBL): ignore filename case. --- ArcFormats/Marble/ArcMBL.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArcFormats/Marble/ArcMBL.cs b/ArcFormats/Marble/ArcMBL.cs index d9ec20ef..7315d261 100644 --- a/ArcFormats/Marble/ArcMBL.cs +++ b/ArcFormats/Marble/ArcMBL.cs @@ -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 (count); for (int i = 0; i < count; ++i) {