diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-22 09:17:10 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-22 09:17:10 -0400 |
commit | b17255fe3fe1466414fb69349345b956457441b0 (patch) | |
tree | 6fa779b859bbef7729884bc3ad083ae54431349a /tools/unnamed.py | |
parent | 1aea38fd3e660ed7eeb74be1a8ce5ca0ee512d6c (diff) |
tools/unnamed.py supports rgbds 0.4.1 object files
Diffstat (limited to 'tools/unnamed.py')
-rwxr-xr-x | tools/unnamed.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/unnamed.py b/tools/unnamed.py index d3d6633e3..06295876d 100755 --- a/tools/unnamed.py +++ b/tools/unnamed.py @@ -81,7 +81,7 @@ for objfile in objects: elif magic == b'RGB9': obj_ver = 10 + unpack_file("<I", f)[0] - if obj_ver not in [6, 10, 11, 12, 13]: + if obj_ver not in [6, 10, 11, 12, 13, 15]: print("Error: File '%s' is of an unknown format." % objfile, file=stderr) exit(1) |