This commit is contained in:
hackgrid 2023-10-15 13:04:40 +02:00
parent 4e4bc572ba
commit 87caebbeae

View file

@ -100,7 +100,7 @@ def make_SubtitleLanguageValues(values_list):
sourcefile_lines = [] sourcefile_lines = []
if len(values_list) <= 0: if len(values_list) <= 0:
sourcefile_lines.append("\n") sourcefile_lines.append("\n")
sourcefile_lines.append("char * SubtitleLanguageValues[][508] =\n") sourcefile_lines.append("char* SubtitleLanguageValues[][508] =\n")
sourcefile_lines.append("{\n") sourcefile_lines.append("{\n")
sourcefile_lines.append(" {\n") sourcefile_lines.append(" {\n")
for val in range(508): for val in range(508):
@ -110,7 +110,7 @@ def make_SubtitleLanguageValues(values_list):
sourcefile_lines.append("\n") sourcefile_lines.append("\n")
return sourcefile_lines return sourcefile_lines
sourcefile_lines.append("\n") sourcefile_lines.append("\n")
sourcefile_lines.append("char * SubtitleLanguageValues[][508] =\n") sourcefile_lines.append("char* SubtitleLanguageValues[][508] =\n")
sourcefile_lines.append("{\n") sourcefile_lines.append("{\n")
for lang in values_list: for lang in values_list:
sourcefile_lines.append(" {\n") sourcefile_lines.append(" {\n")