Skip to content

Commit

Permalink
fix incorrect way of storing globals in uxn target
Browse files Browse the repository at this point in the history
  • Loading branch information
yeti0904 committed Jun 8, 2024
1 parent 7ecb9b6 commit ee4c0bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/backends/uxn.d
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ class BackendUXN : CompilerBackend {
output ~= format("@global_%s", name.Sanitise());

foreach (i ; 0 .. var.Size()) {
output ~= " #00";
output ~= " 00";
}

output ~= "\n";
Expand Down

0 comments on commit ee4c0bc

Please sign in to comment.