Skip to content

Commit 66c1cd9

Browse files
committed
Fix compiling error
1 parent ec65cae commit 66c1cd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/funkin/options/OptionsMenu.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ class OptionsMenu extends TreeMenu {
153153
for(node in xml.elements) {
154154
switch(node.name) {
155155
case "separator":
156-
options.push(new Separator(node.has.height ? Std.parseFloat(node.att.height) : null));
156+
options.push(new Separator(node.has.height ? Std.parseFloat(node.att.height) : 67));
157157
}
158158

159159
if (!node.has.name) {

0 commit comments

Comments
 (0)