Skip to content

Commit 4d8e99f

Browse files
committed
Fix NumOption showing $v
1 parent 323c51e commit 4d8e99f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/funkin/options/type/NumOption.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class NumOption extends TextOption {
1818
var __number:Alphabet;
1919

2020
function set_currentValue(v:Float):Float {
21-
if (__number != null) __number.text = ": $v";
21+
if (__number != null) __number.text = ': $v';
2222
return currentValue = v;
2323
}
2424

0 commit comments

Comments
 (0)