Skip to content

Commit

Permalink
Fix missing options arg in generated projects
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeRanDev committed Nov 28, 2024
1 parent ff56a57 commit d748c2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion newproject/src.direct/langcompiler/CompilerInit.hx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class CompilerInit {
ReflectCompiler.AddCompiler(new Compiler(), {
expressionPreprocessors: [
SanitizeEverythingIsExpression,
PreventRepeatVariables,
PreventRepeatVariables({}),
RemoveSingleExpressionBlocks,
RemoveConstantBoolIfs,
RemoveUnnecessaryBlocks,
Expand Down
2 changes: 1 addition & 1 deletion newproject/src.intermediate/langcompiler/CompilerInit.hx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class CompilerInit {
ReflectCompiler.AddCompiler(new Compiler(), {
expressionPreprocessors: [
SanitizeEverythingIsExpression,
PreventRepeatVariables,
PreventRepeatVariables({}),
RemoveSingleExpressionBlocks,
RemoveConstantBoolIfs,
RemoveUnnecessaryBlocks,
Expand Down

0 comments on commit d748c2a

Please sign in to comment.