Skip to content

Commit

Permalink
SCons: Fix generation of disabled_classes.gen.h after #91624
Browse files Browse the repository at this point in the history
  • Loading branch information
scgm0 authored and akien-mga committed May 13, 2024
1 parent 4219af2 commit 973d3a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/SCsub
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def disabled_class_builder(target, source, env):
for c in source[0].read():
cs = c.strip()
if cs != "":
file.write(f"#define ClassDB_Disable_{cs} 1")
file.write(f"#define ClassDB_Disable_{cs} 1\n")


env.CommandNoCache("disabled_classes.gen.h", env.Value(env.disabled_classes), env.Run(disabled_class_builder))
Expand Down

0 comments on commit 973d3a4

Please sign in to comment.