From b42612e8fb9c866a15c7427299d29dd72cb39f54 Mon Sep 17 00:00:00 2001 From: Tan Wang Leng Date: Thu, 5 May 2016 13:38:57 +0800 Subject: [PATCH 1/2] Remove ModExt.txt symlink Does not work on Mac and Windows, and git unable to deal with file thrashing with another file of similar name. --- ModExt.txt | 1 - 1 file changed, 1 deletion(-) delete mode 120000 ModExt.txt diff --git a/ModExt.txt b/ModExt.txt deleted file mode 120000 index a5e8d636b..000000000 --- a/ModExt.txt +++ /dev/null @@ -1 +0,0 @@ -ModEXT.txt \ No newline at end of file From 577373f91e65b5921fa16d4d76257edb91d32efa Mon Sep 17 00:00:00 2001 From: Tan Wang Leng Date: Thu, 5 May 2016 13:47:02 +0800 Subject: [PATCH 2/2] Fix casing for ModExt.txt Some file systems are case-sensitive, so use proper casing. --- Sources/Engine/Base/Stream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Engine/Base/Stream.cpp b/Sources/Engine/Base/Stream.cpp index d1ead1084..ad8399ce6 100755 --- a/Sources/Engine/Base/Stream.cpp +++ b/Sources/Engine/Base/Stream.cpp @@ -169,7 +169,7 @@ void InitStreams(void) } // find eventual extension for the mod's dlls _strModExt = ""; - LoadStringVar(CTString("ModExt.txt"), _strModExt); + LoadStringVar(CTString("ModEXT.txt"), _strModExt); CPrintF(TRANSV("Loading group files...\n"));