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:
parent
41caa6030d
commit
cd33748ea2
3 changed files with 19806 additions and 19687 deletions
File diff suppressed because it is too large
Load diff
2
todo.txt
2
todo.txt
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue