Skip to content

Commit

Permalink
Remove extra "=" accidentally included in compileGameGlobalsHeader fo…
Browse files Browse the repository at this point in the history
…r constants entries
  • Loading branch information
chrismaltby committed Sep 16, 2024
1 parent f7594f5 commit 8617309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/compiler/generateGBVMData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,7 @@ export const compileGameGlobalsHeader = (
constants
.filter((constant) => constant.symbol)
.map((constant) => {
return `#define ${constant.symbol.toLocaleUpperCase()} = ${
return `#define ${constant.symbol.toLocaleUpperCase()} ${
constant.value
}\n`;
})
Expand Down

0 comments on commit 8617309

Please sign in to comment.