mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-05-22 15:11:11 +00:00
fixed compiler conditional thingie
This commit is contained in:
parent
2419af49d6
commit
ea6b7de62d
|
@ -95,7 +95,6 @@ class ModdingSubstate extends MusicBeatSubstate
|
|||
var modList = [];
|
||||
modFolders = [];
|
||||
|
||||
#if desktop
|
||||
for (file in FileSystem.readDirectory('./mods'))
|
||||
{
|
||||
if (FileSystem.isDirectory('./mods/' + file))
|
||||
|
@ -118,16 +117,18 @@ class ModdingSubstate extends MusicBeatSubstate
|
|||
loopNum++;
|
||||
}
|
||||
#end
|
||||
} private function organizeByY():Void
|
||||
}
|
||||
|
||||
private function organizeByY():Void
|
||||
{
|
||||
for (i in 0...grpMods.length)
|
||||
{
|
||||
grpMods.members[i].y = 10 + (40 * i);
|
||||
}
|
||||
}
|
||||
} class ModMenuItem extends FlxText
|
||||
}
|
||||
|
||||
class ModMenuItem extends FlxText
|
||||
{
|
||||
public var modEnabled:Bool = false;
|
||||
public var daMod:String;
|
||||
|
|
Loading…
Reference in a new issue