Skip to content

Commit feb2e2a

Browse files
committed
fix it again
1 parent ba9fe35 commit feb2e2a

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

437437
override void CompileInteger(IntegerNode node) {

0 commit comments

Comments
 (0)