1
0
Fork 0
mirror of https://git.coom.tech/drummyfish/small3dlib.git synced 2024-11-21 20:39:57 +01:00

Fix obj tool formatting

This commit is contained in:
Miloslav Číž 2019-06-28 02:17:30 +02:00
parent 41caa6030d
commit cd33748ea2
3 changed files with 19806 additions and 19687 deletions

File diff suppressed because it is too large Load diff

View file

@ -87,8 +87,6 @@ features:
bugs: bugs:
- obj tools still crosses the 80 column alignment limit (alligator model)
repeated: repeated:
- valgrind (and similar) checks - valgrind (and similar) checks

View file

@ -138,7 +138,7 @@ def arrayString(name, array, components, scales, align, short, dataType, sizeStr
else: else:
item += ("" if num >= 0 else "-") + "0x%x" % abs(num) item += ("" if num >= 0 else "-") + "0x%x" % abs(num)
if lineLen + len(item) > 80: if lineLen + len(item) >= 80:
result += "\n" result += "\n"
lineLen = 0 lineLen = 0