diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-22 09:17:27 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-22 09:17:27 -0400 |
commit | e7969293d3be7a9e903d1c96871595a3b8e65a50 (patch) | |
tree | 42499d90516c2a7ba7f3fad78bc26c59815d7851 /tools/unnamed.py | |
parent | ba00264d8a640ccf5fb8fea55c1a9114122dd404 (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 2e783fd7..8235bdb8 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) |