From ee4c0bc6feccb8063195db6ca334af887e86d69f Mon Sep 17 00:00:00 2001 From: MESYETI Date: Sat, 8 Jun 2024 12:18:52 +0100 Subject: [PATCH] fix incorrect way of storing globals in uxn target --- source/backends/uxn.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/backends/uxn.d b/source/backends/uxn.d index f3f0dd7..3ef22f4 100644 --- a/source/backends/uxn.d +++ b/source/backends/uxn.d @@ -166,7 +166,7 @@ class BackendUXN : CompilerBackend { output ~= format("@global_%s", name.Sanitise()); foreach (i ; 0 .. var.Size()) { - output ~= " #00"; + output ~= " 00"; } output ~= "\n";