Skip to content

Commit 537883d

Browse files
committed
FIXED!!
1 parent 6a1bbb7 commit 537883d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

source/funkin/backend/assets/Paths.hx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,8 @@ class Paths
3333
for (it=>part in parts) {
3434
if (it == 0) continue;
3535
var entries:Array<String> = null;
36-
if (Path.extension(part) == "") assetsTree.getFolders(fixedPath);
37-
else assetsTree.getFiles(fixedPath);
38-
trace(entries);
36+
if (Path.extension(part) == "") entries = assetsTree.getFolders(fixedPath);
37+
else entries = assetsTree.getFiles(fixedPath);
3938
for (entry in entries) {
4039
trace(part, entry);
4140
if (entry.toLowerCase() == part.toLowerCase()) {
@@ -49,7 +48,6 @@ class Paths
4948
}
5049
else returnedPath = fixedPath;
5150
#end
52-
trace(returnedPath);
5351
return returnedPath;
5452
}
5553

0 commit comments

Comments
 (0)