Skip to content

Commit ba9fe35

Browse files
committed
fix uxn backend
1 parent f749468 commit ba9fe35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/backends/uxn.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ class BackendUXN : CompilerBackend {
431431
Error(node.error, "Value is too big for 16-bit target");
432432
}
433433

434-
output ~= format("#%.4x", (cast(short) node.value) & 0x7F);
434+
output ~= format("#%.4x\n", (cast(short) node.value) & 0x7F);
435435
}
436436

437437
override void CompileInteger(IntegerNode node) {

0 commit comments

Comments
 (0)