Skip to content

Commit 6e3fa74

Browse files
committed
fix temp labels in uxn backend
1 parent 99491e3 commit 6e3fa74

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
@@ -71,7 +71,7 @@ class BackendUXN : CompilerBackend {
7171

7272
string TempLabel() {
7373
++ tempLabelNum;
74-
return format("__temp_%d", tempLabelNum);
74+
return format("temp_%d", tempLabelNum);
7575
}
7676

7777
override string[] GetVersions() => [

0 commit comments

Comments
 (0)