remove some whitespace in gSmluaConstants

This commit is contained in:
Isaac0-dev 2025-02-24 19:55:43 +10:00
parent cf12912bf6
commit a457f48959
3 changed files with 4147 additions and 4145 deletions

View file

@ -262,7 +262,9 @@ def build_files(processed_files):
def build_to_c(built_files): def build_to_c(built_files):
txt = '' txt = ''
with open(get_path(in_filename), 'r') as f: with open(get_path(in_filename), 'r') as f:
txt = f.read() txt = ''
for line in f.readlines():
txt += line.strip() + '\n'
txt += '\n' + built_files txt += '\n' + built_files
while ('\n\n' in txt): while ('\n\n' in txt):

View file

@ -12526,7 +12526,7 @@ MINOR_VERSION_NUMBER = 1
SM64COOPDX_VERSION = "v1.2.1" SM64COOPDX_VERSION = "v1.2.1"
--- @type integer --- @type integer
VERSION_NUMBER = 38 VERSION_NUMBER = 39
--- @type string --- @type string
VERSION_TEXT = "v" VERSION_TEXT = "v"