mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-10-30 08:11:25 +00:00
Fix bad copy
This commit is contained in:
parent
6e011ad799
commit
641eb235e6
1 changed files with 2 additions and 2 deletions
|
|
@ -21,9 +21,9 @@ import src.ResourceLoaderWorker;
|
|||
class ResourceLoader {
|
||||
#if (hl && !android)
|
||||
#if MACOS_BUNDLE
|
||||
public static var fileSystem:FileSystem = new TorqueFileSystem(Path.normalize(Path.join([Path.directory(Sys.programPath()), "..", "..", ".."])), null);
|
||||
public static var fileSystem:FileSystem = new LocalFileSystem(Path.normalize(Path.join([Path.directory(Sys.programPath()), "..", "..", ".."])), null);
|
||||
#else
|
||||
public static var fileSystem:FileSystem = new TorqueFileSystem(".", null);
|
||||
public static var fileSystem:FileSystem = new LocalFileSystem(".", null);
|
||||
#end
|
||||
#end
|
||||
#if (js || android)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue