Fix bad copy

This commit is contained in:
Kayden Tebau 2022-12-18 14:31:57 -08:00
parent 6e011ad799
commit 641eb235e6
No known key found for this signature in database
GPG key ID: 933A1F44222C2634

View file

@ -21,9 +21,9 @@ import src.ResourceLoaderWorker;
class ResourceLoader { class ResourceLoader {
#if (hl && !android) #if (hl && !android)
#if MACOS_BUNDLE #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 #else
public static var fileSystem:FileSystem = new TorqueFileSystem(".", null); public static var fileSystem:FileSystem = new LocalFileSystem(".", null);
#end #end
#end #end
#if (js || android) #if (js || android)