Fixed warnings on Windows

This commit is contained in:
Sam Lantinga 2021-06-24 18:09:04 -07:00
parent 99700a5c52
commit 5b051459ed
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ def write_controllers():
for entry in sorted(controllers, key=lambda entry: entry[2]+"-"+entry[1]):
line = "".join(entry) + "\n"
line = line.replace("\t", " ")
if not line.endswith(",\n") and not line.endswith("*/\n"):
if not line.endswith(",\n") and not line.endswith("*/\n") and not line.endswith(",\r\n") and not line.endswith("*/\r\n"):
print("Warning: '%s' is missing a comma at the end of the line" % (line))
output.write(line)