Skip to content

Commit

Permalink
More fixes cuz im dumb
Browse files Browse the repository at this point in the history
  • Loading branch information
garlfin authored Feb 19, 2020
1 parent 67e5e2e commit ed9ccfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def crap(path):
if len(f) == 0:
print(pathtoobj + " doesnt have any triangles! ABORTING")
return
if len(f) >= 4294967296 * 9:
if len(f) >= 65535 * 9:
print(pathtoobj + " has too many triangles! ABORTING")
return
if len(vt) >= 4294967296 * 2:
Expand Down

0 comments on commit ed9ccfc

Please sign in to comment.