Skip to content

Commit

Permalink
Fix python issue
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyschoen committed Feb 2, 2025
1 parent b218709 commit 52a47f9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Resources/Scripts/package_resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,7 @@ def generate_binary_data(output_dir, file_list):
header.write("namespace BinaryData\n{\n")
for data in file_data:
header.write(f" extern const char* {data['var_name']};\n")
header.write(f" const int {data['var_name']}Size = {
data['size']};\n")
header.write(f" const int {data['var_name']}Size = {data['size']};\n")

header.write(
"\n const int namedResourceListSize = {};\n".format(len(file_data)))
Expand Down

0 comments on commit 52a47f9

Please sign in to comment.