Skip to content

Commit

Permalink
fix temp labels in uxn backend
Browse files Browse the repository at this point in the history
  • Loading branch information
MESYETI committed Feb 5, 2025
1 parent 99491e3 commit 6e3fa74
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 @@ -71,7 +71,7 @@ class BackendUXN : CompilerBackend {

string TempLabel() {
++ tempLabelNum;
return format("__temp_%d", tempLabelNum);
return format("temp_%d", tempLabelNum);
}

override string[] GetVersions() => [
Expand Down

0 comments on commit 6e3fa74

Please sign in to comment.