mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-10-30 08:11:25 +00:00
fix case insensitivity again and discard the marbleland game requirements
This commit is contained in:
parent
4d2b41711f
commit
d8ae54df77
1 changed files with 4 additions and 1 deletions
|
|
@ -59,7 +59,10 @@ class TorqueFileSystem extends LocalFileSystem {
|
||||||
if (c == null) {
|
if (c == null) {
|
||||||
isNew = true;
|
isNew = true;
|
||||||
c = new Map();
|
c = new Map();
|
||||||
for (f in try sys.FileSystem.readDirectory(baseDir) catch (e:Dynamic) [])
|
for (f in try
|
||||||
|
sys.FileSystem.readDirectory(baseDir)
|
||||||
|
catch (e:Dynamic)
|
||||||
|
[])
|
||||||
c.set(f.toLowerCase(), true);
|
c.set(f.toLowerCase(), true);
|
||||||
directoryCache.set(baseDir.toLowerCase(), c);
|
directoryCache.set(baseDir.toLowerCase(), c);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue